From bb70f4e5305c82f246fdfbbce4136b507c6965bb Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 23 Dec 2019 18:00:02 +0000 Subject: [PATCH] Docs: Correct the note about the `CORE_UPGRADE_SKIP_NEW_BUNDLED` constant in `$_new_bundled_files` global description. In order to tell WordPress not to install new bundled themes on update, `CORE_UPGRADE_SKIP_NEW_BUNDLED` should be set to `true`, as the name suggests, not `false`. Follow-up to [39064]. Props tomgreer, knutsp, crdunst. See #49056. Built from https://develop.svn.wordpress.org/trunk@47007 git-svn-id: http://core.svn.wordpress.org/trunk@46807 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/update-core.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/update-core.php b/wp-admin/includes/update-core.php index 375cac2d44..f5092eec3a 100644 --- a/wp-admin/includes/update-core.php +++ b/wp-admin/includes/update-core.php @@ -807,7 +807,7 @@ $_old_files = array( * @since 4.7.0 New themes were not automatically installed for 4.4-4.6 on * upgrade. New themes are now installed again. To disable new * themes from being installed on upgrade, explicitly define - * CORE_UPGRADE_SKIP_NEW_BUNDLED as false. + * CORE_UPGRADE_SKIP_NEW_BUNDLED as true. * @global array $_new_bundled_files * @var array * @name $_new_bundled_files diff --git a/wp-includes/version.php b/wp-includes/version.php index 1046f61def..b2e031517d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.4-alpha-47006'; +$wp_version = '5.4-alpha-47007'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.