Options: remove old 'gzipcompression' and 'advanced_edit' options.
Props chriscct7, solarissmoke. Fixes #12996. Built from https://develop.svn.wordpress.org/trunk@35360 git-svn-id: http://core.svn.wordpress.org/trunk@35326 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
56c81005fe
commit
e31c837d70
|
@ -420,13 +420,11 @@ function populate_options() {
|
||||||
'comment_moderation' => 0,
|
'comment_moderation' => 0,
|
||||||
'moderation_notify' => 1,
|
'moderation_notify' => 1,
|
||||||
'permalink_structure' => '',
|
'permalink_structure' => '',
|
||||||
'gzipcompression' => 0,
|
|
||||||
'blog_charset' => 'UTF-8',
|
'blog_charset' => 'UTF-8',
|
||||||
'moderation_keys' => '',
|
'moderation_keys' => '',
|
||||||
'active_plugins' => array(),
|
'active_plugins' => array(),
|
||||||
'category_base' => '',
|
'category_base' => '',
|
||||||
'ping_sites' => 'http://rpc.pingomatic.com/',
|
'ping_sites' => 'http://rpc.pingomatic.com/',
|
||||||
'advanced_edit' => 0,
|
|
||||||
'comment_max_links' => 2,
|
'comment_max_links' => 2,
|
||||||
'gmt_offset' => $gmt_offset,
|
'gmt_offset' => $gmt_offset,
|
||||||
|
|
||||||
|
@ -568,7 +566,7 @@ function populate_options() {
|
||||||
'can_compress_scripts', 'page_uris', 'update_core', 'update_plugins', 'update_themes', 'doing_cron',
|
'can_compress_scripts', 'page_uris', 'update_core', 'update_plugins', 'update_themes', 'doing_cron',
|
||||||
'random_seed', 'rss_excerpt_length', 'secret', 'use_linksupdate', 'default_comment_status_page',
|
'random_seed', 'rss_excerpt_length', 'secret', 'use_linksupdate', 'default_comment_status_page',
|
||||||
'wporg_popular_tags', 'what_to_show', 'rss_language', 'language', 'enable_xmlrpc', 'enable_app',
|
'wporg_popular_tags', 'what_to_show', 'rss_language', 'language', 'enable_xmlrpc', 'enable_app',
|
||||||
'embed_autourls', 'default_post_edit_rows',
|
'embed_autourls', 'default_post_edit_rows', 'gzipcompression', 'advanced_edit'
|
||||||
);
|
);
|
||||||
foreach ( $unusedoptions as $option )
|
foreach ( $unusedoptions as $option )
|
||||||
delete_option($option);
|
delete_option($option);
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.4-alpha-35359';
|
$wp_version = '4.4-alpha-35360';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue