Ticket #23573: 23573.1.diff

File 23573.1.diff, 3.0 KB (added by JustinSainton, 3 months ago)
Line 
1Index: wp-admin/includes/update-core.php
2===================================================================
3--- wp-admin/includes/update-core.php   (revision 23465)
4+++ wp-admin/includes/update-core.php   (working copy)
5@@ -571,10 +571,11 @@
6 global $_new_bundled_files;
7 
8 $_new_bundled_files = array(
9-'plugins/akismet/' => '2.0',
10-'themes/twentyten/' => '3.0',
11-'themes/twentyeleven/' => '3.2',
12-'themes/twentytwelve/' => '3.5',
13+       'plugins/akismet/'       => '2.0',
14+       'themes/twentyten/'      => '3.0',
15+       'themes/twentyeleven/'   => '3.2',
16+       'themes/twentytwelve/'   => '3.5',
17+       'themes/twentythirteen/' => '3.6',
18 );
19 
20 /**
21Index: wp-admin/includes/upgrade.php
22===================================================================
23--- wp-admin/includes/upgrade.php       (revision 23465)
24+++ wp-admin/includes/upgrade.php       (working copy)
25@@ -218,7 +218,7 @@
26        update_option( 'widget_archives', array ( 2 => array ( 'title' => '', 'count' => 0, 'dropdown' => 0 ), '_multiwidget' => 1 ) );
27        update_option( 'widget_categories', array ( 2 => array ( 'title' => '', 'count' => 0, 'hierarchical' => 0, 'dropdown' => 0 ), '_multiwidget' => 1 ) );
28        update_option( 'widget_meta', array ( 2 => array ( 'title' => '' ), '_multiwidget' => 1 ) );
29-       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 ) );
30+       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 ) );
31 
32        if ( ! is_multisite() )
33                update_user_meta( $user_id, 'show_welcome_panel', 1 );
34Index: wp-includes/class-wp-theme.php
35===================================================================
36--- wp-includes/class-wp-theme.php      (revision 23465)
37+++ wp-includes/class-wp-theme.php      (working copy)
38@@ -37,11 +37,12 @@
39         * @var array
40         */
41        private static $default_themes = array(
42-               'classic'      => 'WordPress Classic',
43-               'default'      => 'WordPress Default',
44-               'twentyten'    => 'Twenty Ten',
45-               'twentyeleven' => 'Twenty Eleven',
46-               'twentytwelve' => 'Twenty Twelve',
47+               'classic'        => 'WordPress Classic',
48+               'default'        => 'WordPress Default',
49+               'twentyten'      => 'Twenty Ten',
50+               'twentyeleven'   => 'Twenty Eleven',
51+               'twentytwelve'   => 'Twenty Twelve',
52+               'twentythirteen' => 'Twenty Thirteen',
53        );
54 
55        /**
56Index: wp-includes/default-constants.php
57===================================================================
58--- wp-includes/default-constants.php   (revision 23465)
59+++ wp-includes/default-constants.php   (working copy)
60@@ -304,6 +304,6 @@
61         * @since 3.0.0
62         */
63        if ( !defined('WP_DEFAULT_THEME') )
64-               define( 'WP_DEFAULT_THEME', 'twentytwelve' );
65+               define( 'WP_DEFAULT_THEME', 'twentythirteen' );
66 
67 }