diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php index 0ecf0a23f0..40035f8ba3 100644 --- a/wp-admin/includes/dashboard.php +++ b/wp-admin/includes/dashboard.php @@ -487,7 +487,7 @@ function wp_dashboard_quick_press( $error_msg = false ) { $post = get_default_post_to_edit( 'post' , true); $user_id = get_current_user_id(); // Don't create an option if this is a super admin who does not belong to this site. - if ( ! ( is_super_admin( $user_id ) && ! in_array( get_current_blog_id(), array_keys( get_blogs_of_user( $user_id ) ) ) ) ) + if ( in_array( get_current_blog_id(), array_keys( get_blogs_of_user( $user_id ) ) ) ) update_user_option( $user_id, 'dashboard_quick_press_last_post_id', (int) $post->ID ); // Save post_ID } diff --git a/wp-includes/option.php b/wp-includes/option.php index fa935cec85..67df23f9db 100644 --- a/wp-includes/option.php +++ b/wp-includes/option.php @@ -808,7 +808,7 @@ function wp_user_settings() { return; } - if ( is_super_admin() && ! is_user_member_of_blog() ) { + if ( ! is_user_member_of_blog() ) { return; } @@ -972,7 +972,7 @@ function wp_set_all_user_settings( $user_settings ) { return false; } - if ( is_super_admin() && ! is_user_member_of_blog() ) { + if ( ! is_user_member_of_blog() ) { return; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 80037c194c..1ca5b162b1 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.8-alpha-39931'; +$wp_version = '4.8-alpha-39932'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.