diff --git a/wp-admin/menu.php b/wp-admin/menu.php index 2fd146bd1a..f258e5639b 100644 --- a/wp-admin/menu.php +++ b/wp-admin/menu.php @@ -28,8 +28,9 @@ if ( is_multisite() ) { $submenu[ 'index.php' ][5] = array( __('My Sites'), 'read', 'my-sites.php' ); } -if ( ! is_multisite() || is_super_admin() ) +if ( ! is_multisite() || current_user_can( 'update_core' ) ) { $update_data = wp_get_update_data(); +} if ( ! is_multisite() ) { if ( current_user_can( 'update_core' ) ) diff --git a/wp-includes/version.php b/wp-includes/version.php index 32444fe0df..b344d9f04c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.8-alpha-39539'; +$wp_version = '4.8-alpha-39540'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.