From 234c53c0c108741af11315641bd3419dc41de17e Mon Sep 17 00:00:00 2001 From: Peter Westwood Date: Thu, 15 Sep 2011 09:26:07 +0000 Subject: [PATCH] Reorder the titles in the Network Admin and Global Dashboard to put the locations first. Fixes #18304 props duck_ git-svn-id: https://develop.svn.wordpress.org/trunk@18675 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/admin-header.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/admin-header.php b/wp-admin/admin-header.php index 2aed335764..c341ed69b8 100644 --- a/wp-admin/admin-header.php +++ b/wp-admin/admin-header.php @@ -122,9 +122,9 @@ wp_set_width_class(); site_name) ); + $blog_name = sprintf( __('Network Admin: %s'), esc_html($current_site->site_name) ); elseif ( is_user_admin() ) - $blog_name = sprintf( __('%s Global Dashboard'), esc_html($current_site->site_name) ); + $blog_name = sprintf( __('Global Dashboard: %s'), esc_html($current_site->site_name) ); else $blog_name = get_bloginfo('name', 'display'); if ( '' == $blog_name ) {