Changeset 39064
- Timestamp:
- 11/01/2016 01:23:17 AM (8 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/update-core.php
r38922 r39064 726 726 * 727 727 * @since 3.2.0 728 * @since 4.4.0 New themes are not automatically installed on upgrade. 729 * This can still be explicitly asked for by defining 728 * @since 4.7.0 New themes were not automatically installed for 4.4-4.6 on 729 * upgrade. New themes are now installed again. To disable new 730 * themes from being installed on upgrade, explicitly define 730 731 * CORE_UPGRADE_SKIP_NEW_BUNDLED as false. 731 732 * @global array $_new_bundled_files … … 746 747 'themes/twentyseventeen/' => '4.7', 747 748 ); 748 749 // If not explicitly defined as false, don't install new default themes.750 if ( ! defined( 'CORE_UPGRADE_SKIP_NEW_BUNDLED' ) || CORE_UPGRADE_SKIP_NEW_BUNDLED ) {751 $_new_bundled_files = array( 'plugins/akismet/' => '2.0' );752 }753 749 754 750 /** -
trunk/tests/phpunit/tests/theme.php
r38907 r39064 188 188 */ 189 189 function test_default_theme_in_default_theme_list() { 190 $this->markTestSkipped( 'Core repository inclusion was stopped after Twenty Fifteen' );191 190 if ( 'twenty' === substr( WP_DEFAULT_THEME, 0, 6 ) ) { 192 191 $this->assertContains( WP_DEFAULT_THEME, $this->default_themes );
Note: See TracChangeset
for help on using the changeset viewer.