We no longer need to check function_exists() for date_default_timezone_set(). props Gary-J, j-idris. fixes #20501.

git-svn-id: http://core.svn.wordpress.org/trunk@21544 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Nacin 2012-08-17 23:40:09 +00:00
parent 26ebec2fc8
commit 9d12d7df9c
1 changed files with 2 additions and 3 deletions

View File

@ -32,8 +32,7 @@ wp_check_php_mysql_versions();
@ini_set( 'magic_quotes_runtime', 0 );
@ini_set( 'magic_quotes_sybase', 0 );
// Set default timezone in PHP 5.
if ( function_exists( 'date_default_timezone_set' ) )
// WordPress calculates offsets from UTC.
date_default_timezone_set( 'UTC' );
// Turn register_globals off.