Make WordPress Core

Changeset 11264


Ignore:
Timestamp:
05/11/2009 05:31:30 PM (17 years ago)
Author:
ryan
Message:

Add timezone_string to populate_options. Props hakre. fixes #9706

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/schema.php

    r10902 r11264  
    304304    'widget_categories' => array(),
    305305    'widget_text' => array(),
    306     'widget_rss' => array()
     306    'widget_rss' => array(),
     307   
     308    // 2.8
     309    'timezone_string' => ''
    307310    );
    308311
  • trunk/wp-settings.php

    r11128 r11264  
    4747
    4848unset( $wp_filter, $cache_lastcommentmodified, $cache_lastpostdate );
     49
     50function wp_register_REQUEST() {
     51    $_REQUEST = array_merge($_GET, $_POST);
     52}
     53
     54wp_register_REQUEST();
    4955
    5056/**
Note: See TracChangeset for help on using the changeset viewer.