From ef62c16135538562d06f1d708a8d0b2de0dd1e7f Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Tue, 25 May 2010 13:58:52 +0000 Subject: [PATCH] Remove the on switch for global terms. install_global_terms() can be triggered in a plugin. see #12666. git-svn-id: https://develop.svn.wordpress.org/trunk@14880 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/ms-edit.php | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/wp-admin/ms-edit.php b/wp-admin/ms-edit.php index c2ad779375..8307bf851f 100644 --- a/wp-admin/ms-edit.php +++ b/wp-admin/ms-edit.php @@ -115,12 +115,7 @@ switch ( $_GET['action'] ) { } } update_site_option( 'dashboard_blog', $dashboard_blog_id ); - // global terms - if ( !global_terms_enabled() && ! empty( $_POST['global_terms_enabled'] ) ) { - require_once( ABSPATH . 'wp-admin/includes/upgrade.php' ); - // create global terms table - install_global_terms(); - } + $options = array( 'registrationnotification', 'registration', 'add_new_users', 'menu_items', 'mu_media_buttons', 'upload_space_check_disabled', 'blog_upload_space', 'upload_filetypes', 'site_name', 'first_post', 'first_page', 'first_comment', 'first_comment_url', 'first_comment_author', 'welcome_email', 'welcome_user_email', 'fileupload_maxk', 'admin_notice_feed', 'global_terms_enabled' ); $checked_options = array( 'mu_media_buttons' => array(), 'menu_items' => array(), 'registrationnotification' => 'no', 'upload_space_check_disabled' => 1 ); foreach ( $checked_options as $option_name => $option_unchecked_value ) {