From: Marcus Boerger Date: Tue, 16 Aug 2005 18:10:34 +0000 (+0000) Subject: - Prevent E_STRICT from ending up as exception X-Git-Tag: php-5.1.0RC2_PRE~107 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e8b05734bec739a8037f44a0bae458e06b23225b;p=php - Prevent E_STRICT from ending up as exception --- diff --git a/main/main.c b/main/main.c index 71bcd366cb..4e1a09009d 100644 --- a/main/main.c +++ b/main/main.c @@ -657,6 +657,9 @@ static void php_error_cb(int type, const char *error_filename, const uint error_ case E_PARSE: /* fatal errors are real errors and cannot be made exceptions */ break; + case E_STRICT: + /* for the sake of BC to old damaged code */ + break; case E_NOTICE: case E_USER_NOTICE: /* notices are no errors and are not treated as such like E_WARNINGS */