From 07544aec69ca3668ee4235919301d6af75ae6874 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 13 Nov 2013 04:17:10 +0000 Subject: [PATCH] Restore the $current_site global in wp-admin/admin-header.php to avoid an undefined function error in single site. see #25158. Built from https://develop.svn.wordpress.org/trunk@26124 git-svn-id: http://core.svn.wordpress.org/trunk@26036 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/admin-header.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/wp-admin/admin-header.php b/wp-admin/admin-header.php index 95af173f26..6df3ad2f72 100644 --- a/wp-admin/admin-header.php +++ b/wp-admin/admin-header.php @@ -12,9 +12,7 @@ if ( ! defined( 'WP_ADMIN' ) ) // In case admin-header.php is included in a function. global $title, $hook_suffix, $current_screen, $wp_locale, $pagenow, $wp_version, - $update_title, $total_update_count, $parent_file; - -$current_site = get_current_site(); + $current_site, $update_title, $total_update_count, $parent_file; // Catch plugins that include admin-header.php before admin.php completes. if ( empty( $current_screen ) )