diff --git a/wp-admin/network/upgrade.php b/wp-admin/network/upgrade.php index b9c2bcf343..5c2d3f990f 100644 --- a/wp-admin/network/upgrade.php +++ b/wp-admin/network/upgrade.php @@ -53,9 +53,9 @@ switch ( $action ) { } $site_ids = get_sites( array( - 'spam' => '0', - 'deleted' => '0', - 'archived' => '0', + 'spam' => 0, + 'deleted' => 0, + 'archived' => 0, 'network_id' => get_current_network_id(), 'number' => 5, 'offset' => $n, diff --git a/wp-includes/version.php b/wp-includes/version.php index 0b7ab94c96..215a22a715 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-alpha-38818'; +$wp_version = '4.7-alpha-38819'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.