From 3c7ea03cb0a3d16a2302bb65349a9429fd181389 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Wed, 24 Jun 2015 00:37:28 +0000 Subject: [PATCH] Correct the title used on the user dashboard. Fixes #32754 Props johnjamesjacoby Built from https://develop.svn.wordpress.org/trunk@32917 git-svn-id: http://core.svn.wordpress.org/trunk@32888 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/admin-header.php | 2 +- wp-includes/admin-bar.php | 2 +- wp-includes/version.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/admin-header.php b/wp-admin/admin-header.php index dd354de36c..e471ff931d 100644 --- a/wp-admin/admin-header.php +++ b/wp-admin/admin-header.php @@ -36,7 +36,7 @@ $title = esc_html( strip_tags( $title ) ); if ( is_network_admin() ) $admin_title = sprintf( __( 'Network Admin: %s' ), esc_html( get_current_site()->site_name ) ); elseif ( is_user_admin() ) - $admin_title = sprintf( __( 'Global Dashboard: %s' ), esc_html( get_current_site()->site_name ) ); + $admin_title = sprintf( __( 'User Dashboard: %s' ), esc_html( get_current_site()->site_name ) ); else $admin_title = get_bloginfo( 'name' ); diff --git a/wp-includes/admin-bar.php b/wp-includes/admin-bar.php index 62d068e8cf..4cdea5653a 100644 --- a/wp-includes/admin-bar.php +++ b/wp-includes/admin-bar.php @@ -273,7 +273,7 @@ function wp_admin_bar_site_menu( $wp_admin_bar ) { if ( is_network_admin() ) { $blogname = sprintf( __('Network Admin: %s'), esc_html( get_current_site()->site_name ) ); } elseif ( is_user_admin() ) { - $blogname = sprintf( __('Global Dashboard: %s'), esc_html( get_current_site()->site_name ) ); + $blogname = sprintf( __('User Dashboard: %s'), esc_html( get_current_site()->site_name ) ); } $title = wp_html_excerpt( $blogname, 40, '…' ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 68634f46d8..e8bef5dfb9 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-alpha-32916'; +$wp_version = '4.3-alpha-32917'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.