We don't need to do this if the user isn't logged in.

git-svn-id: https://develop.svn.wordpress.org/trunk@18688 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood 2011-09-16 10:56:06 +00:00
parent cc5c326c37
commit 44821916ca

View File

@ -14,18 +14,20 @@ class WP_Admin_Bar {
$this->user = new stdClass; $this->user = new stdClass;
$this->menu = new stdClass; $this->menu = new stdClass;
/* Populate settings we need for the menu based on the current user. */ if ( is_user_logged_in() ) {
$this->user->blogs = get_blogs_of_user( get_current_user_id() ); /* Populate settings we need for the menu based on the current user. */
if ( is_multisite() ) { $this->user->blogs = get_blogs_of_user( get_current_user_id() );
$this->user->active_blog = get_active_blog_for_user( get_current_user_id() ); if ( is_multisite() ) {
$this->user->domain = empty( $this->user->active_blog ) ? user_admin_url() : trailingslashit( get_home_url( $this->user->active_blog->blog_id ) ); $this->user->active_blog = get_active_blog_for_user( get_current_user_id() );
$this->user->account_domain = $this->user->domain; $this->user->domain = empty( $this->user->active_blog ) ? user_admin_url() : trailingslashit( get_home_url( $this->user->active_blog->blog_id ) );
} else { $this->user->account_domain = $this->user->domain;
$this->user->active_blog = $this->user->blogs[get_current_blog_id()]; } else {
$this->user->domain = trailingslashit( home_url() ); $this->user->active_blog = $this->user->blogs[get_current_blog_id()];
$this->user->account_domain = $this->user->domain; $this->user->domain = trailingslashit( home_url() );
$this->user->account_domain = $this->user->domain;
}
$this->user->locale = get_locale();
} }
$this->user->locale = get_locale();
add_action( 'wp_head', 'wp_admin_bar_header' ); add_action( 'wp_head', 'wp_admin_bar_header' );