Allow plugins to override tz support enable/disable. Props Otto42. fixes #3962

git-svn-id: https://develop.svn.wordpress.org/trunk@11329 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2009-05-14 16:23:20 +00:00
parent fe335afb5f
commit 734685397b

View File

@ -3094,9 +3094,9 @@ function wp_timezone_supported() {
&& function_exists('timezone_open')
&& function_exists('timezone_offset_get')
)
return true;
return apply_filters('timezone_support',true);
return false;
return apply_filters('timezone_support',false);
}
/**