From cbe5fc6fb8be67a0429e06eb8f3c79505c02538c Mon Sep 17 00:00:00 2001 From: Dominik Schilling Date: Tue, 9 Feb 2016 14:30:28 +0000 Subject: [PATCH] Multisite: Don't show the database upgrade admin notice on the upgrade page itself. Fixes #35782. Built from https://develop.svn.wordpress.org/trunk@36505 git-svn-id: http://core.svn.wordpress.org/trunk@36472 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/ms.php | 17 +++++++++++++---- wp-includes/version.php | 2 +- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/wp-admin/includes/ms.php b/wp-admin/includes/ms.php index e3ce2a36e1..8c2f8224d8 100644 --- a/wp-admin/includes/ms.php +++ b/wp-admin/includes/ms.php @@ -748,16 +748,25 @@ function mu_dropdown_languages( $lang_files = array(), $current = '' ) { * * @since 3.0.0 * - * @global int $wp_db_version The version number of the database. + * @global int $wp_db_version The version number of the database. + * @global string $pagenow * * @return false False if the current user is not a super admin. */ function site_admin_notice() { - global $wp_db_version; - if ( !is_super_admin() ) + global $wp_db_version, $pagenow; + + if ( ! is_super_admin() ) { return false; - if ( get_site_option( 'wpmu_upgrade_site' ) != $wp_db_version ) + } + + if ( 'upgrade.php' == $pagenow ) { + return; + } + + if ( get_site_option( 'wpmu_upgrade_site' ) != $wp_db_version ) { echo "
" . sprintf( __( 'Thank you for Updating! Please visit the Upgrade Network page to update all your sites.' ), esc_url( network_admin_url( 'upgrade.php' ) ) ) . "
"; + } } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index 2960d69158..19578da30c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-36504'; +$wp_version = '4.5-alpha-36505'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.