PluginProbe
Fluent Support – Helpdesk & Customer Support Ticket System / 2.1.1
Fluent Support – Helpdesk & Customer Support Ticket System v2.1.1
2.4.0 2.3.2 2.3.1 2.3.0 2.2.1 2.2.0 trunk 1.10.0 1.10.1 1.10.2 1.10.3 1.10.4 1.10.5 1.4.0 1.4.1 1.4.2 1.4.5 1.4.6 1.4.7 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 All 68 releases
← All changes | app/Services/Integrations/NotificationIntegrationBase.php +4 -3 2.3.22.1.1 View file →
@@ -56,11 +56,12 @@
56 56
57 57 public function sendRequest($url, $params = [], $method = 'GET', $extraHeaders = [])
58 58 {
59 59 $request = wp_remote_request($url, [
60 - 'method' => $method,
61 - 'body' => $params,
62 - 'headers' => $extraHeaders
60 + 'sslverify' => false,
61 + 'method' => $method,
62 + 'body' => $params,
63 + 'headers' => $extraHeaders
63 64 ]);
64 65
65 66 if (is_wp_error($request)) {
66 67 return new \WP_Error($request->get_error_code(), $request->get_error_message());