about.php and friends for the global dashboard. see #19762.

git-svn-id: https://develop.svn.wordpress.org/trunk@19700 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin
2012-01-06 18:08:45 +00:00
parent 5ccd02fb01
commit a5ada1a537
8 changed files with 45 additions and 6 deletions
+2 -2
View File
@@ -75,7 +75,7 @@ function wp_admin_bar_wp_menu( $wp_admin_bar ) {
$wp_admin_bar->add_menu( array(
'id' => 'wp-logo',
'title' => '<span class="ab-icon"></span>',
'href' => is_network_admin() ? network_admin_url( 'about.php' ) : admin_url( 'about.php' ),
'href' => self_admin_url( 'about.php' ),
'meta' => array(
'title' => __('About WordPress'),
),
@@ -87,7 +87,7 @@ function wp_admin_bar_wp_menu( $wp_admin_bar ) {
'parent' => 'wp-logo',
'id' => 'about',
'title' => __('About WordPress'),
'href' => is_network_admin() ? network_admin_url( 'about.php' ) : admin_url( 'about.php' ),
'href' => self_admin_url( 'about.php' ),
) );
}