From 283c367df717de4757910ebc906886f8f6f5154e Mon Sep 17 00:00:00 2001 From: Jeremy Felt Date: Wed, 11 May 2016 19:22:27 +0000 Subject: [PATCH] Tests: Set `public` to `1` in the default blog factory When no `$meta` arguments are passed to `wpmu_create_blog()`, `public` is set to `0` in the database for new sites. This is fine, but also does not match the default implied when most sites are created via `site-new.php`. The only current use of the `$meta` argument in the tests is to (re)mark `public` as `0`. All existing tests pass with this change. Tests for `WP_Site_Query` can now rely on better default expectations. See #36566. Built from https://develop.svn.wordpress.org/trunk@37418 git-svn-id: http://core.svn.wordpress.org/trunk@37384 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index 6622eb84af..8d6f7bcc64 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-alpha-37417'; +$wp_version = '4.6-alpha-37418'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.