PluginProbe
E2Pdf – Export Pdf Tool for WordPress / 1.32.51
E2Pdf – Export Pdf Tool for WordPress v1.32.51
1.32.51 1.32.49 1.32.48 1.32.43 1.32.40 1.32.34 1.32.32 1.32.31 1.32.26 1.32.22 1.32.23 1.32.18 1.32.17 1.32.15 trunk 1.00.00 1.00.13 1.01.01 1.02.02 1.03.07 1.04.07 1.05.03 1.06.02 1.07.11 1.08.00 All 73 releases
← All changes | classes/model/e2pdf-adobesign.php +3 -1 1.32.341.32.51 View file →
@@ -195,9 +195,11 @@
195 195
196 196 $json = curl_exec($ch);
197 197 $curl_errno = curl_errno($ch);
198 198 $curl_error = curl_error($ch);
199 - curl_close($ch);
199 + if (PHP_VERSION_ID < 80000) {
200 + curl_close($ch);
201 + }
200 202 // phpcs:enable
201 203
202 204 if ($curl_errno > 0) {
203 205 $response['error'] = "[{$curl_errno}] {$curl_error}";