From 46178887a809647fe94e2b9ddf70990ea7d9e624 Mon Sep 17 00:00:00 2001 From: westi Date: Thu, 22 Jan 2009 20:51:07 +0000 Subject: [PATCH] Update error_reporting configuration for newer version of PHP. Fixes #8701 for 2.7.x props jacobsantos git-svn-id: http://svn.automattic.com/wordpress/branches/2.7@10406 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-settings.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/wp-settings.php b/wp-settings.php index 692370dfca..54ccb472a0 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -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); } // For an advanced caching plugin to use, static because you would only want one