Ticket #23573: 23573.2.diff
| File 23573.2.diff, 4.4 KB (added by , 13 years ago) |
|---|
-
wp-admin/includes/update-core.php
571 571 global $_new_bundled_files; 572 572 573 573 $_new_bundled_files = array( 574 'plugins/akismet/' => '2.0', 575 'themes/twentyten/' => '3.0', 576 'themes/twentyeleven/' => '3.2', 577 'themes/twentytwelve/' => '3.5', 574 'plugins/akismet/' => '2.0', 575 'themes/twentyten/' => '3.0', 576 'themes/twentyeleven/' => '3.2', 577 'themes/twentytwelve/' => '3.5', 578 'themes/twentythirteen/' => '3.6', 578 579 ); 579 580 580 581 /** -
wp-admin/includes/upgrade.php
218 218 update_option( 'widget_archives', array ( 2 => array ( 'title' => '', 'count' => 0, 'dropdown' => 0 ), '_multiwidget' => 1 ) ); 219 219 update_option( 'widget_categories', array ( 2 => array ( 'title' => '', 'count' => 0, 'hierarchical' => 0, 'dropdown' => 0 ), '_multiwidget' => 1 ) ); 220 220 update_option( 'widget_meta', array ( 2 => array ( 'title' => '' ), '_multiwidget' => 1 ) ); 221 update_option( 'sidebars_widgets', array ( 'wp_inactive_widgets' => array (), 'sidebar-1' => array ( 0 => 'search-2', 1 => 'recent-posts-2', 2 => 'recent-comments-2', 3 => 'archives-2', 4 => 'categories-2', 5 => 'meta-2', ), 'sidebar-2' => array (), 'sidebar-3' => array (),'array_version' => 3 ) );221 update_option( 'sidebars_widgets', array ( 'wp_inactive_widgets' => array (), 'sidebar-1' => array ( 0 => 'search-2', 1 => 'recent-posts-2', 2 => 'recent-comments-2', 3 => 'archives-2', 4 => 'categories-2', 5 => 'meta-2', ), 'sidebar-2' => array (),'array_version' => 3 ) ); 222 222 223 223 if ( ! is_multisite() ) 224 224 update_user_meta( $user_id, 'show_welcome_panel', 1 ); -
wp-admin/nav-menus.php
435 435 'content' => 436 436 '<p>' . __('This feature allows you to use a custom menu in place of your theme’s default menus.') . '</p>' . 437 437 '<p>' . __('Custom menus may contain links to pages, categories, custom links or other content types (use the Screen Options tab to decide which ones to show on the screen). You can specify a different navigation label for a menu item as well as other attributes. You can create multiple menus. If your theme includes more than one menu location, you can choose which custom menu to associate with each. You can also use custom menus in conjunction with the Custom Menus widget.') . '</p>' . 438 '<p>' . sprintf( __('If your theme does not support the custom menus feature (the default themes, %1$s and %2$s, do), you can learn about adding this support by following the Documentation link to the side.'), 'Twenty T welve', 'Twenty Eleven' ) . '</p>'438 '<p>' . sprintf( __('If your theme does not support the custom menus feature (the default themes, %1$s and %2$s, do), you can learn about adding this support by following the Documentation link to the side.'), 'Twenty Thirteen', 'Twenty Twelve' ) . '</p>' 439 439 ) ); 440 440 get_current_screen()->add_help_tab( array( 441 441 'id' => 'create-menus', -
wp-includes/class-wp-theme.php
37 37 * @var array 38 38 */ 39 39 private static $default_themes = array( 40 'classic' => 'WordPress Classic', 41 'default' => 'WordPress Default', 42 'twentyten' => 'Twenty Ten', 43 'twentyeleven' => 'Twenty Eleven', 44 'twentytwelve' => 'Twenty Twelve', 40 'classic' => 'WordPress Classic', 41 'default' => 'WordPress Default', 42 'twentyten' => 'Twenty Ten', 43 'twentyeleven' => 'Twenty Eleven', 44 'twentytwelve' => 'Twenty Twelve', 45 'twentythirteen' => 'Twenty Thirteen', 45 46 ); 46 47 47 48 /** -
wp-includes/default-constants.php
304 304 * @since 3.0.0 305 305 */ 306 306 if ( !defined('WP_DEFAULT_THEME') ) 307 define( 'WP_DEFAULT_THEME', 'twentyt welve' );307 define( 'WP_DEFAULT_THEME', 'twentythirteen' ); 308 308 309 309 }