Changeset 35738 for trunk/src/wp-admin/includes/update-core.php
- Timestamp:
- 11/25/2015 09:44:02 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/update-core.php
r35718 r35738 716 716 * 717 717 * @since 3.2.0 718 * @since 4.4.0 New themes are not automatically installed on upgrade. 719 * This can still be explicitly asked for by defining 720 * CORE_UPGRADE_SKIP_NEW_BUNDLED as false. 718 721 * @global array $_new_bundled_files 719 722 * @var array … … 732 735 'themes/twentysixteen/' => '4.4', 733 736 ); 737 738 // If not explicitly defined as false, don't install new default themes. 739 if ( ! defined( 'CORE_UPGRADE_SKIP_NEW_BUNDLED' ) || CORE_UPGRADE_SKIP_NEW_BUNDLED ) { 740 $_new_bundled_files = array( 'plugins/akismet/' => '2.0' ); 741 } 734 742 735 743 /**
Note: See TracChangeset
for help on using the changeset viewer.