Changeset 54891 for trunk/src/wp-includes/ms-load.php
- Timestamp:
- 11/29/2022 03:49:49 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-load.php
r53394 r54891 298 298 // If the network is defined in wp-config.php, we can simply use that. 299 299 if ( defined( 'DOMAIN_CURRENT_SITE' ) && defined( 'PATH_CURRENT_SITE' ) ) { 300 $current_site = new stdClass ;300 $current_site = new stdClass(); 301 301 $current_site->id = defined( 'SITE_ID_CURRENT_SITE' ) ? SITE_ID_CURRENT_SITE : 1; 302 302 $current_site->domain = DOMAIN_CURRENT_SITE; … … 388 388 // During activation of a new subdomain, the requested site does not yet exist. 389 389 if ( empty( $current_blog ) && wp_installing() ) { 390 $current_blog = new stdClass ;390 $current_blog = new stdClass(); 391 391 $current_blog->blog_id = 1; 392 392 $blog_id = 1;
Note: See TracChangeset
for help on using the changeset viewer.