PluginProbe
The WP Remote WordPress Plugin / trunk
The WP Remote WordPress Plugin vtrunk
6.72 6.69 6.65 6.62 6.48 6.47 4.87 4.97 5.05 5.09 5.16 5.22 5.24 5.25 5.38 5.41 5.42 5.45 5.47 5.53 5.56 5.65 5.68 5.72 5.73 All 53 releases
← All changes | php_error_monitoring/monitoring.php +3 -2 6.47trunk View file →
@@ -139,9 +139,9 @@
139 139
140 140 $data["md5"] = md5($code . '-' . $message . '-' . $line . '-' . $file . '-' . $serialized_backtrace);
141 141
142 142 if (!self::canCaptureError($data['md5'])) {
143 - return;
143 + return false;
144 144 }
145 145
146 146 $data["error_code"] = $code;
147 147 $data["error_message"] = $message;
@@ -154,7 +154,8 @@
154 154 $data["request_path"] = parse_url($uri, PHP_URL_PATH);
155 155 $data["request_id"] = WPRInfo::getRequestID();
156 156
157 157 self::saveError(maybe_serialize($data));
158 + return false;
158 159 }
159 160 }
160 -endif;
161 +endif;