Make WordPress Core


Ignore:
Timestamp:
09/15/2011 09:26:07 AM (13 years ago)
Author:
westi
Message:

Reorder the titles in the Network Admin and Global Dashboard to put the locations first. Fixes #18304 props duck_

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/admin-header.php

    r18667 r18675  
    123123
    124124if ( is_network_admin() )
    125     $blog_name = sprintf( __('%s Network Admin'), esc_html($current_site->site_name) );
     125    $blog_name = sprintf( __('Network Admin: %s'), esc_html($current_site->site_name) );
    126126elseif ( is_user_admin() )
    127     $blog_name = sprintf( __('%s Global Dashboard'), esc_html($current_site->site_name) );
     127    $blog_name = sprintf( __('Global Dashboard: %s'), esc_html($current_site->site_name) );
    128128else
    129129    $blog_name = get_bloginfo('name', 'display');
Note: See TracChangeset for help on using the changeset viewer.