Changeset 56727
- Timestamp:
- 09/26/2023 05:31:28 PM (13 months ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/update-core.php
r56559 r56727 998 998 'themes/twentytwentytwo/' => '5.9', 999 999 'themes/twentytwentythree/' => '6.1', 1000 'themes/twentytwentyfour/' => '6.4', 1000 1001 ); 1001 1002 -
trunk/src/wp-includes/class-wp-theme.php
r56621 r56727 60 60 * @since 5.9.0 Added the Twenty Twenty-Two theme. 61 61 * @since 6.1.0 Added the Twenty Twenty-Three theme. 62 * @since 6.4.0 Added the Twenty Twenty-Four theme. 62 63 * @var string[] 63 64 */ … … 78 79 'twentytwentytwo' => 'Twenty Twenty-Two', 79 80 'twentytwentythree' => 'Twenty Twenty-Three', 81 'twentytwentyfour' => 'Twenty Twenty-Four', 80 82 ); 81 83 -
trunk/src/wp-includes/default-constants.php
r56635 r56727 432 432 */ 433 433 if ( ! defined( 'WP_DEFAULT_THEME' ) ) { 434 define( 'WP_DEFAULT_THEME', 'twentytwenty three' );435 } 436 } 434 define( 'WP_DEFAULT_THEME', 'twentytwentyfour' ); 435 } 436 } -
trunk/tests/phpunit/tests/theme.php
r56635 r56727 23 23 'twentytwentytwo', 24 24 'twentytwentythree', 25 'twentytwentyfour', 25 26 ); 26 27
Note: See TracChangeset
for help on using the changeset viewer.