Changeset 18685
- Timestamp:
- 09/16/2011 07:18:05 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/admin-bar.php
r18683 r18685 194 194 195 195 foreach ( (array) $wp_admin_bar->user->blogs as $blog ) { 196 // Skip the current blog .197 if ( $blog->userblog_id == $wp_admin_bar->user->active_blog->blog_id )196 // Skip the current blog (unless we're in the network/user admin). 197 if ( $blog->userblog_id == get_current_blog_id() && ! is_network_admin() && ! is_user_admin() ) { 198 198 continue; 199 } 199 200 200 201 // @todo Replace with some favicon lookup.
Note: See TracChangeset
for help on using the changeset viewer.