Changeset 45590 for trunk/src/wp-includes/ms-load.php
- Timestamp:
- 07/02/2019 11:41:16 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-load.php
r45162 r45590 325 325 * the network first, because we need the network's path to identify any sites. 326 326 */ 327 if ( ! $current_site = wp_cache_get( 'current_network', 'site-options' ) ) { 327 $current_site = wp_cache_get( 'current_network', 'site-options' ); 328 if ( ! $current_site ) { 328 329 // Are there even two networks installed? 329 330 $networks = get_networks( array( 'number' => 2 ) ); … … 389 390 if ( empty( $current_blog ) && wp_installing() ) { 390 391 $current_blog = new stdClass; 391 $current_blog->blog_id = $blog_id = 1; 392 $current_blog->blog_id = 1; 393 $blog_id = 1; 392 394 $current_blog->public = 1; 393 395 }
Note: See TracChangeset
for help on using the changeset viewer.