Make WordPress Core


Ignore:
Timestamp:
11/18/2015 08:29:44 PM (9 years ago)
Author:
ocean90
Message:

Revert [35336] and [35337].

See #28344.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/options.php

    r35479 r35685  
    8383
    8484$whitelist_options = array(
    85     'general' => array( 'blogname', 'blogdescription', 'gmt_offset', 'date_format', 'time_format', 'timezone_string', 'WPLANG' ),
     85    'general' => array( 'blogname', 'blogdescription', 'gmt_offset', 'date_format', 'time_format', 'start_of_week', 'timezone_string', 'WPLANG' ),
    8686    'discussion' => array( 'default_pingback_flag', 'default_ping_status', 'default_comment_status', 'comments_notify', 'moderation_notify', 'comment_moderation', 'require_name_email', 'comment_whitelist', 'comment_max_links', 'moderation_keys', 'blacklist_keys', 'show_avatars', 'avatar_rating', 'avatar_default', 'close_comments_for_old_posts', 'close_comments_days_old', 'thread_comments', 'thread_comments_depth', 'page_comments', 'comments_per_page', 'default_comments_page', 'comment_order', 'comment_registration' ),
    8787    'media' => array( 'thumbnail_size_w', 'thumbnail_size_h', 'thumbnail_crop', 'medium_size_w', 'medium_size_h', 'medium_large_size_w', 'medium_large_size_h', 'large_size_w', 'large_size_h', 'image_default_size', 'image_default_align', 'image_default_link_type' ),
     
    9393$mail_options = array('mailserver_url', 'mailserver_port', 'mailserver_login', 'mailserver_pass');
    9494
    95 if ( ! in_array( get_option( 'blog_charset' ), array( 'utf8', 'utf-8', 'UTF8', 'UTF-8' ) ) ) {
     95if ( ! in_array( get_option( 'blog_charset' ), array( 'utf8', 'utf-8', 'UTF8', 'UTF-8' ) ) )
    9696    $whitelist_options['reading'][] = 'blog_charset';
    97 }
    98 
    99 /**
    100  * @global WP_Locale $wp_locale
    101  */
    102 global $wp_locale;
    103 if ( get_option( 'start_of_week' ) != $wp_locale->start_of_week ) {
    104     $whitelist_options['general'][] = 'start_of_week';
    105 }
    10697
    10798if ( get_site_option( 'initial_db_version' ) < 32453 ) {
Note: See TracChangeset for help on using the changeset viewer.