diff --git a/wp-includes/user.php b/wp-includes/user.php index 9f7cf756f9..916fd52bab 100644 --- a/wp-includes/user.php +++ b/wp-includes/user.php @@ -1175,9 +1175,9 @@ function get_blogs_of_user( $user_id, $all = false ) { 'path' => $blog->path, 'site_id' => $blog->site_id, 'siteurl' => $blog->siteurl, - 'archived' => 0, - 'spam' => 0, - 'deleted' => 0 + 'archived' => $blog->archived, + 'spam' => $blog->spam, + 'deleted' => $blog->deleted, ); } unset( $keys[ $wpdb->base_prefix . 'capabilities' ] ); @@ -1204,9 +1204,9 @@ function get_blogs_of_user( $user_id, $all = false ) { 'path' => $blog->path, 'site_id' => $blog->site_id, 'siteurl' => $blog->siteurl, - 'archived' => 0, - 'spam' => 0, - 'deleted' => 0 + 'archived' => $blog->archived, + 'spam' => $blog->spam, + 'deleted' => $blog->deleted, ); } } diff --git a/wp-includes/version.php b/wp-includes/version.php index b1f4e677c3..55e986014a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-alpha-32625'; +$wp_version = '4.3-alpha-32626'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.