Use the correct PHP6 check.

git-svn-id: http://svn.automattic.com/wordpress/trunk@10433 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi 2009-01-24 13:20:59 +00:00
parent cbe2d8b09c
commit 88838cc993
1 changed files with 1 additions and 1 deletions

View File

@ -202,7 +202,7 @@ if (defined('WP_DEBUG') and WP_DEBUG == true) {
error_reporting(E_ALL);
} else {
// Unicode Extension is in PHP 6.0 only or do version check when this changes.
if ( version_compare( '6.0', phpversion(), '>' ) )
if ( function_exists('unicode_decode') )
error_reporting( E_ALL ^ E_DEPRECATED ^ E_NOTICE ^ E_USER_NOTICE ^ E_STRICT );
else if ( defined( 'E_DEPRECATED' ) ) // Introduced in PHP 5.3
error_reporting( E_ALL ^ E_DEPRECATED ^ E_NOTICE ^ E_USER_NOTICE );