From 6969fb8001067da87f6392d2a5186d77296e9f13 Mon Sep 17 00:00:00 2001 From: Jeremy Felt Date: Thu, 7 Mar 2019 03:46:50 +0000 Subject: [PATCH] Multisite: Fix code formatting errors from r44805 See #46351. Built from https://develop.svn.wordpress.org/trunk@44806 git-svn-id: http://core.svn.wordpress.org/trunk@44638 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/ms-site.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/ms-site.php b/wp-includes/ms-site.php index b7a14c47f8..920e5d8b37 100644 --- a/wp-includes/ms-site.php +++ b/wp-includes/ms-site.php @@ -107,7 +107,7 @@ function wp_insert_site( array $data ) { // Rebuild the data expected by the `wpmu_new_blog` hook prior to 5.1.0 using whitelisted keys. // The `$site_data_whitelist` matches the one used in `wpmu_create_blog()`. $site_data_whitelist = array( 'public', 'archived', 'mature', 'spam', 'deleted', 'lang_id' ); - $meta = array_merge( array_intersect_key( $data, array_flip( $site_data_whitelist ) ), $meta ); + $meta = array_merge( array_intersect_key( $data, array_flip( $site_data_whitelist ) ), $meta ); /** * Fires immediately after a new site is created. diff --git a/wp-includes/version.php b/wp-includes/version.php index 17ba6f834b..f2cc0d3a65 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.2-alpha-44805'; +$wp_version = '5.2-alpha-44806'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.