From bcf8d7598eaf1368267ab5256b5f72d23a44b2fc Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Sun, 7 Mar 2010 02:51:55 +0000 Subject: [PATCH] Check date_create() exists for automatic-timezone functionality. Props hakre. Fixes #12534 git-svn-id: https://develop.svn.wordpress.org/trunk@13616 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/functions.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 57488f2b38..48cbc63bb1 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -3736,6 +3736,7 @@ function wp_timezone_override_offset() { function wp_timezone_supported() { $support = false; if ( + function_exists( 'date_create' ) && function_exists( 'date_default_timezone_set' ) && function_exists( 'timezone_identifiers_list' ) && function_exists( 'timezone_open' ) &&