Multisite load: Properly call wp_cache_set().
props gradyetc. see #27003. Built from https://develop.svn.wordpress.org/trunk@27406 git-svn-id: http://core.svn.wordpress.org/trunk@27253 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
39fcb291fe
commit
5dc0a56f26
|
@ -75,7 +75,7 @@ if ( !isset( $current_site ) || !isset( $current_blog ) ) {
|
||||||
$one_network = $wpdb->get_row( "SELECT * FROM $wpdb->site LIMIT 2" ); // [sic]
|
$one_network = $wpdb->get_row( "SELECT * FROM $wpdb->site LIMIT 2" ); // [sic]
|
||||||
if ( 1 === $wpdb->num_rows ) {
|
if ( 1 === $wpdb->num_rows ) {
|
||||||
$current_site = wp_get_network( $one_network );
|
$current_site = wp_get_network( $one_network );
|
||||||
wp_cache_set( 'current_network', 'site-options' );
|
wp_cache_set( 'current_network', $current_site, 'site-options' );
|
||||||
} elseif ( 0 === $wpdb->num_rows ) {
|
} elseif ( 0 === $wpdb->num_rows ) {
|
||||||
ms_not_installed();
|
ms_not_installed();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue