diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php index 42da6ea9c8..73146e583b 100644 --- a/wp-admin/includes/dashboard.php +++ b/wp-admin/includes/dashboard.php @@ -293,7 +293,7 @@ function wp_dashboard_right_now() { update_right_now_message(); // Check if search engines are asked not to index this site. - if ( ! is_network_admin() && ! is_user_admin() && current_user_can( 'manage_options' ) && '1' != get_option( 'blog_public' ) ) { + if ( ! is_network_admin() && ! is_user_admin() && current_user_can( 'manage_options' ) && '0' == get_option( 'blog_public' ) ) { /** * Filter the link title attribute for the 'Search Engines Discouraged' diff --git a/wp-includes/version.php b/wp-includes/version.php index 57bbdf6af5..28352912d4 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-35872'; +$wp_version = '4.5-alpha-35873'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.