Changeset 29895
- Timestamp:
- 10/14/2014 07:57:13 PM (10 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-theme.php
r28673 r29895 45 45 'twentythirteen' => 'Twenty Thirteen', 46 46 'twentyfourteen' => 'Twenty Fourteen', 47 'twentyfifteen' => 'Twenty Fifteen', 47 48 ); 48 49 -
trunk/src/wp-includes/default-constants.php
r29044 r29895 319 319 */ 320 320 if ( !defined('WP_DEFAULT_THEME') ) 321 define( 'WP_DEFAULT_THEME', 'twentyf ourteen' );322 323 } 321 define( 'WP_DEFAULT_THEME', 'twentyfifteen' ); 322 323 } -
trunk/tests/phpunit/tests/theme.php
r26858 r29895 9 9 protected $theme_slug = 'twentyeleven'; 10 10 protected $theme_name = 'Twenty Eleven'; 11 protected $default_themes = array( 'twentyten', 'twentyeleven', 'twentytwelve', 'twentythirteen', 'twentyfourteen' ); 11 protected $default_themes = array( 12 'twentyten', 'twentyeleven', 'twentytwelve', 'twentythirteen', 13 'twentyfourteen', 'twentyfifteen', 14 ); 12 15 13 16 function setUp() {
Note: See TracChangeset
for help on using the changeset viewer.