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
This commit is contained in:
parent
246a035d99
commit
bb70f4e530
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue