PluginProbe
Fluent Support – Helpdesk & Customer Support Ticket System / 2.4.0
Fluent Support – Helpdesk & Customer Support Ticket System v2.4.0
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 +3 -4 1.10.52.4.0 View file →
@@ -56,12 +56,11 @@
56 56
57 57 public function sendRequest($url, $params = [], $method = 'GET', $extraHeaders = [])
58 58 {
59 59 $request = wp_remote_request($url, [
60 - 'sslverify' => false,
61 - 'method' => $method,
62 - 'body' => $params,
63 - 'headers' => $extraHeaders
60 + 'method' => $method,
61 + 'body' => $params,
62 + 'headers' => $extraHeaders
64 63 ]);
65 64
66 65 if (is_wp_error($request)) {
67 66 return new \WP_Error($request->get_error_code(), $request->get_error_message());