From: Kalle Sommer Nielsen Date: Wed, 11 Aug 2010 21:18:45 +0000 (+0000) Subject: Seems like this one skipped the commit (E_ERROR -> E_CORE_ERROR) for zend.ze1_compati... X-Git-Tag: php-5.3.4RC1~373 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1178d719ea3e8447c2824626827c575c13bce8c6;p=php Seems like this one skipped the commit (E_ERROR -> E_CORE_ERROR) for zend.ze1_compatibility_mode (re #52570) --- diff --git a/main/main.c b/main/main.c index be83ea18bb..ab7df7ba51 100644 --- a/main/main.c +++ b/main/main.c @@ -2083,7 +2083,7 @@ int php_module_startup(sapi_module_struct *sf, zend_module_entry *additional_mod /* This is not too nice, but since its the only one theres no need for extra stuff here */ if (cfg_get_long("zend.ze1_compatibility_mode", &val) == SUCCESS && val) { - zend_error(E_ERROR, "zend.ze1_compatibility_mode is no longer supported in PHP 5.3 and greater"); + zend_error(E_CORE_ERROR, "zend.ze1_compatibility_mode is no longer supported in PHP 5.3 and greater"); } }