Restore the $current_site global in wp-admin/admin-header.php to avoid an undefined function error in single site.

see #25158.

git-svn-id: https://develop.svn.wordpress.org/trunk@26124 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2013-11-13 04:16:43 +00:00
parent d3cee0734e
commit d97f64f9f7
1 changed files with 1 additions and 3 deletions

View File

@ -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 ) )