Changeset 13737
- Timestamp:
- 03/17/2010 05:42:49 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/schema.php
r13736 r13737 248 248 'recently_edited' => '', 249 249 'use_linksupdate' => 0, 250 'template' => WP_ FALLBACK_THEME,251 'stylesheet' => WP_ FALLBACK_THEME,250 'template' => WP_DEFAULT_THEME, 251 'stylesheet' => WP_DEFAULT_THEME, 252 252 'comment_whitelist' => 1, 253 253 'blacklist_keys' => '', -
trunk/wp-includes/default-constants.php
r13500 r13737 285 285 286 286 /** 287 * Slug of the default theme for this install. 288 * Used as the default theme when installing new sites. 289 * @since 3.0.0 290 */ 291 if ( !defined('WP_DEFAULT_THEME') ) 292 define( 'WP_DEFAULT_THEME', 'twentyten' ); 293 294 /** 287 295 * Slug of the fallback theme for this install. 288 296 * Will be used as the fallback if the current theme doesn't exist. … … 290 298 */ 291 299 if ( !defined('WP_FALLBACK_THEME') ) 292 define( 'WP_FALLBACK_THEME', 'twentyten');300 define( 'WP_FALLBACK_THEME', WP_DEFAULT_THEME ); 293 301 } 294 302
Note: See TracChangeset
for help on using the changeset viewer.