Add timezone_string to populate_options. Props hakre. fixes #9706

git-svn-id: https://develop.svn.wordpress.org/trunk@11264 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2009-05-11 17:31:30 +00:00
parent ed05a1e8f8
commit 352827e01a
2 changed files with 10 additions and 1 deletions

View File

@ -303,7 +303,10 @@ function populate_options() {
'sticky_posts' => array(),
'widget_categories' => array(),
'widget_text' => array(),
'widget_rss' => array()
'widget_rss' => array(),
// 2.8
'timezone_string' => ''
);
// Set autoload to no for these options

View File

@ -47,6 +47,12 @@ wp_unregister_GLOBALS();
unset( $wp_filter, $cache_lastcommentmodified, $cache_lastpostdate );
function wp_register_REQUEST() {
$_REQUEST = array_merge($_GET, $_POST);
}
wp_register_REQUEST();
/**
* The $blog_id global, which you can change in the config allows you to create a simple
* multiple blog installation using just one WordPress and changing $blog_id around.