1 2 3 4 5 6 7 8 9 10 11 12 13
|
Index: php5-5.3.3.1/ext/soap/soap.c
===================================================================
--- php5-5.3.3.1.orig/ext/soap/soap.c 2016-02-24 14:56:56.000000000 +0100
+++ php5-5.3.3.1/ext/soap/soap.c 2016-02-24 15:37:34.000000000 +0100
@@ -2322,7 +2322,7 @@
_old_http_response_code = SG(sapi_headers).http_response_code;
_old_http_status_line = SG(sapi_headers).http_status_line;
- if (!SOAP_GLOBAL(use_soap_error_handler)) {
+ if (!PG(modules_activated) || !SOAP_GLOBAL(use_soap_error_handler)) {
call_old_error_handler(error_num, error_filename, error_lineno, format, args);
return;
}
|