Skip to content

Commit fbcc823

Browse files
committed
Remove E_EXCEPTION
1 parent 02623dd commit fbcc823

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

Zend/zend_errors.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@
3838
#define E_DEPRECATED (1<<13L)
3939
#define E_USER_DEPRECATED (1<<14L)
4040

41-
#define E_EXCEPTION (1<<15L)
42-
4341
#define E_ALL (E_ERROR | E_WARNING | E_PARSE | E_NOTICE | E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_COMPILE_WARNING | E_USER_ERROR | E_USER_WARNING | E_USER_NOTICE | E_RECOVERABLE_ERROR | E_DEPRECATED | E_USER_DEPRECATED | E_STRICT)
4442
#define E_CORE (E_CORE_ERROR | E_CORE_WARNING)
4543

ext/soap/soap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2130,7 +2130,7 @@ static void soap_error_handler(int error_num, const char *error_filename, const
21302130
_old_http_response_code = SG(sapi_headers).http_response_code;
21312131
_old_http_status_line = SG(sapi_headers).http_status_line;
21322132

2133-
if (!SOAP_GLOBAL(use_soap_error_handler) || !EG(objects_store).object_buckets || (error_num & E_EXCEPTION)) {
2133+
if (!SOAP_GLOBAL(use_soap_error_handler) || !EG(objects_store).object_buckets) {
21342134
call_old_error_handler(error_num, error_filename, error_lineno, format, args);
21352135
return;
21362136
}

0 commit comments

Comments
 (0)