diff --git a/wp-admin/ms-edit.php b/wp-admin/ms-edit.php index a3bdf0144d..1ed20f1c74 100644 --- a/wp-admin/ms-edit.php +++ b/wp-admin/ms-edit.php @@ -248,9 +248,6 @@ switch ( $_GET['action'] ) { // update blogs table $blog_data = stripslashes_deep( $_POST['blog'] ); - $blog_data_checkboxes = array( 'public', 'archived', 'spam', 'mature', 'deleted' ); - foreach ( $blog_data_checkboxes as $c ) - $blog_data[ $c ] = ! empty( $_POST['blog'][ $c ] ); update_blog_details( $id, $blog_data ); // get blog prefix diff --git a/wp-admin/ms-sites.php b/wp-admin/ms-sites.php index b40857f5ec..d00cb8a050 100644 --- a/wp-admin/ms-sites.php +++ b/wp-admin/ms-sites.php @@ -120,24 +120,26 @@ switch ( $action ) {