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
This commit is contained in:
Peter Westwood 2011-09-15 09:26:07 +00:00
parent d20435eb03
commit 234c53c0c1

View File

@ -122,9 +122,9 @@ wp_set_width_class();
<?php
if ( is_network_admin() )
$blog_name = sprintf( __('%s Network Admin'), esc_html($current_site->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 ) {