Multisite: Use correct types in get_sites()
during network upgrade.
`spam`, `deleted`, and `archived` query args should be integers, not strings. Props ocean90. See #37823. git-svn-id: https://develop.svn.wordpress.org/trunk@38819 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
f04f183213
commit
79cee7a230
@ -53,9 +53,9 @@ switch ( $action ) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$site_ids = get_sites( array(
|
$site_ids = get_sites( array(
|
||||||
'spam' => '0',
|
'spam' => 0,
|
||||||
'deleted' => '0',
|
'deleted' => 0,
|
||||||
'archived' => '0',
|
'archived' => 0,
|
||||||
'network_id' => get_current_network_id(),
|
'network_id' => get_current_network_id(),
|
||||||
'number' => 5,
|
'number' => 5,
|
||||||
'offset' => $n,
|
'offset' => $n,
|
||||||
|
Loading…
Reference in New Issue
Block a user