Update error_reporting configuration for newer version of PHP. Fixes #8701 props jacobsantos

git-svn-id: https://develop.svn.wordpress.org/trunk@10405 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood 2009-01-22 20:44:06 +00:00
parent d9497b9755
commit e0ab3314ad

View File

@ -201,7 +201,12 @@ timer_start();
if (defined('WP_DEBUG') and WP_DEBUG == true) {
error_reporting(E_ALL);
} else {
error_reporting(E_ALL ^ E_NOTICE ^ E_USER_NOTICE);
if ( defined( 'E_DEPRECATED' ) )
error_reporting(E_ALL ^ E_STRICT ^ E_DEPRECATED ^ E_NOTICE ^ E_USER_NOTICE);
else if ( defined( 'E_STRICT' ) )
error_reporting(E_ALL ^ E_STRICT ^ E_NOTICE ^ E_USER_NOTICE);
else
error_reporting(E_ALL ^ E_NOTICE ^ E_USER_NOTICE);
}
// When this is defined and set to true the non-minified versions of the Javascripts will be used.