[wp-trac] [WordPress Trac] #14772: Administration bar
WordPress Trac
wp-trac at lists.automattic.com
Tue Sep 28 05:49:49 UTC 2010
#14772: Administration bar
----------------------------+-----------------------------------------------
Reporter: rmccue | Owner: filosofo
Type: task (blessed) | Status: assigned
Priority: normal | Milestone: 3.1
Component: Administration | Version:
Severity: normal | Keywords: multisite
----------------------------+-----------------------------------------------
Changes (by azizur):
* cc: prodevstudio+wordpress@… (added)
Comment:
Replying to [comment:11 ryan]:
> (In [15671]) Admin bar, first pass. see #14772
In file admin-bar.php [15671] line 81 needs a path separator.
currently I am seeing:
{{{
$wp_admin_bar->add_menu( array( 'id' => 'me',
'title' => get_avatar( $current_user->ID, 16 ),
'href' => $wp_admin_bar->user->account_domain . 'wp-admin/profile.php' )
);
}}}
it should be:
{{{
$wp_admin_bar->add_menu( array( 'id' => 'me',
'title' => get_avatar( $current_user->ID, 16 ),
'href' => $wp_admin_bar->user->account_domain . '/wp-admin/profile.php' )
);
}}}
--
Ticket URL: <http://core.trac.wordpress.org/ticket/14772#comment:14>
WordPress Trac <http://core.trac.wordpress.org/>
WordPress blogging software
More information about the wp-trac
mailing list