From e31c837d70500a6305260a61cb6bee50ee09735a Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Thu, 22 Oct 2015 19:49:24 +0000 Subject: [PATCH] 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 --- wp-admin/includes/schema.php | 4 +--- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/wp-admin/includes/schema.php b/wp-admin/includes/schema.php index 344ba5a9f1..a5d41ccc18 100644 --- a/wp-admin/includes/schema.php +++ b/wp-admin/includes/schema.php @@ -420,13 +420,11 @@ function populate_options() { 'comment_moderation' => 0, 'moderation_notify' => 1, 'permalink_structure' => '', - 'gzipcompression' => 0, 'blog_charset' => 'UTF-8', 'moderation_keys' => '', 'active_plugins' => array(), 'category_base' => '', 'ping_sites' => 'http://rpc.pingomatic.com/', - 'advanced_edit' => 0, 'comment_max_links' => 2, 'gmt_offset' => $gmt_offset, @@ -568,7 +566,7 @@ function populate_options() { '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', '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 ) delete_option($option); diff --git a/wp-includes/version.php b/wp-includes/version.php index af748e78c8..c01afb5f12 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @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.