#19426 closed defect (bug) (fixed)
Need to support old admin bar node ID my-account-with-avatar
| Reported by: | nacin | Owned by: | ryan |
|---|---|---|---|
| Priority: | high | Milestone: | 3.3 |
| Component: | Toolbar | Version: | 3.3 |
| Severity: | normal | Keywords: | has-patch commit needs-refresh dev-reviewed |
| Cc: | Focuses: |
Description
In 3.2, the my account ID varied from my-account-with-avatar to my-account, depending on whether avatars were enabled. This was moved to classes in 3.3 where it belongs.
Unfortunately plugins may have been using my-account-with-avatar. We need to preserve these mappings.
A quick search of the directory found BuddyPress was among the plugins that did this. And smartly, for that matter -- $bp->my_account_menu_id = ( ! empty( $avatar ) ) ? 'my-account-with-avatar' : 'my-account';.
Patch incoming.
Attachments (5)
Change History (18)
#2
@
15 years ago
I checked all of the IDs in 3.2 and the only other one is my-blogs to my-sites. Of note, blog-{$id} and blog-{$id}-* still work. BuddyPress and a few other plugins were using my-blogs.
#6
@
15 years ago
Per #19429, we're going to want to map 'my-account' and 'my-account-with-avatar' to 'account'.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
This would revive the mapping concept proposed in #19245. But the binding code is no longer the proper place for it. add_node() it is.