Make WordPress Core


Ignore:
Timestamp:
10/31/2011 07:38:46 PM (13 years ago)
Author:
ryan
Message:

Avoid E_STRICT notices. see #18975

File:
1 edited

Legend:

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

    r18604 r19094  
    135135function wpmu_current_site() {
    136136    global $wpdb, $current_site, $domain, $path, $sites, $cookie_domain;
     137
     138    if ( empty( $current_site ) )
     139        $current_site = new stdClass;
     140
    137141    if ( defined( 'DOMAIN_CURRENT_SITE' ) && defined( 'PATH_CURRENT_SITE' ) ) {
    138142        $current_site->id = defined( 'SITE_ID_CURRENT_SITE' ) ? SITE_ID_CURRENT_SITE : 1;
Note: See TracChangeset for help on using the changeset viewer.