Changeset 33989 for trunk/src/wp-includes/ms-settings.php
- Timestamp:
- 09/10/2015 03:52:21 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-settings.php
r28934 r33989 79 79 wp_cache_add( 'current_network', $current_site, 'site-options' ); 80 80 } elseif ( 0 === $wpdb->num_rows ) { 81 ms_not_installed( );81 ms_not_installed( $domain, $path ); 82 82 } 83 83 } … … 87 87 88 88 if ( empty( $current_site ) ) { 89 ms_not_installed( );89 ms_not_installed( $domain, $path ); 90 90 } elseif ( $path === $current_site->path ) { 91 91 $current_blog = get_site_by_path( $domain, $path ); … … 112 112 // No network has been found, bail. 113 113 if ( empty( $current_site ) ) { 114 ms_not_installed( );114 ms_not_installed( $domain, $path ); 115 115 } 116 116 … … 157 157 * As we couldn't find a site, we're simply not installed. 158 158 */ 159 ms_not_installed( );159 ms_not_installed( $domain, $path ); 160 160 } 161 161
Note: See TracChangeset
for help on using the changeset viewer.