Make WordPress Core

Changeset 15332


Ignore:
Timestamp:
06/25/2010 04:17:33 PM (14 years ago)
Author:
ryan
Message:

Fix inverted logic in [15331]. see #13934

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/ms-blogs.php

    r15331 r15332  
    408408    }
    409409 
    410     if ( ! did_action('init') ) {
     410    if ( did_action('init') ) {
    411411        $current_user = wp_get_current_user(); 
    412412        if ( is_object( $current_user ) )
     
    464464    }
    465465
    466     if ( ! did_action('init') ) {
     466    if ( did_action('init') ) {
    467467        $current_user = wp_get_current_user();
    468468        if ( is_object( $current_user ) )
Note: See TracChangeset for help on using the changeset viewer.