Seems like this one skipped the commit (E_ERROR -> E_CORE_ERROR) for zend.ze1_compatibility_mode (re #52570)

This commit is contained in:
Kalle Sommer Nielsen 2010-08-11 21:18:45 +00:00
parent 8deefa8780
commit 1178d719ea

View File

@ -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");
}
}