Don't read from the switched global. Instead use _wp_switched_stack. switched is retained for back compat and should not be directly read since it is prone to stompage by plugins. see #21459
git-svn-id: https://develop.svn.wordpress.org/trunk@22015 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
5a03a885f3
commit
8628f13d69
|
@ -520,7 +520,7 @@ function switch_to_blog( $new_blog, $deprecated = null ) {
|
||||||
function restore_current_blog() {
|
function restore_current_blog() {
|
||||||
global $wpdb, $wp_roles;
|
global $wpdb, $wp_roles;
|
||||||
|
|
||||||
if ( ! $GLOBALS['switched'] )
|
if ( empty( $GLOBALS['_wp_switched_stack'] ) )
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
$blog = array_pop( $GLOBALS['_wp_switched_stack'] );
|
$blog = array_pop( $GLOBALS['_wp_switched_stack'] );
|
||||||
|
@ -580,7 +580,7 @@ function restore_current_blog() {
|
||||||
* @return bool True if switched, false otherwise.
|
* @return bool True if switched, false otherwise.
|
||||||
*/
|
*/
|
||||||
function ms_is_switched() {
|
function ms_is_switched() {
|
||||||
return $GLOBALS['switched'];
|
return ! empty( $GLOBALS['_wp_switched_stack'] );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue