Reorder the titles in the Network Admin and Global Dashboard to put the locations first. Fixes #18304 props duck_
git-svn-id: http://svn.automattic.com/wordpress/trunk@18675 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
2605391379
commit
26b57f09a2
|
@ -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 ) {
|
||||
|
|
Loading…
Reference in New Issue