Ticket #5161: 5161.diff
File 5161.diff, 1.8 KB (added by , 9 years ago) |
---|
-
src/wp-admin/includes/schema.php
381 381 'admin_email' => 'you@example.com', 382 382 /* translators: default start of the week. 0 = Sunday, 1 = Monday */ 383 383 'start_of_week' => _x( '1', 'start of week' ), 384 'use_balanceTags' => 0,384 'use_balanceTags' => 1, 385 385 'use_smilies' => 1, 386 386 'require_name_email' => 1, 387 387 'comments_notify' => 1, -
src/wp-admin/options-writing.php
56 56 <?php settings_fields('writing'); ?> 57 57 58 58 <table class="form-table"> 59 <?php if ( get_site_option( 'initial_db_version' ) < 32453 ) : ?> 59 60 <tr> 60 61 <th scope="row"><?php _e('Formatting') ?></th> 61 62 <td><fieldset><legend class="screen-reader-text"><span><?php _e('Formatting') ?></span></legend> … … 65 66 <label for="use_balanceTags"><input name="use_balanceTags" type="checkbox" id="use_balanceTags" value="1" <?php checked('1', get_option('use_balanceTags')); ?> /> <?php _e('WordPress should correct invalidly nested XHTML automatically') ?></label> 66 67 </fieldset></td> 67 68 </tr> 69 <?php endif; ?> 68 70 <tr> 69 71 <th scope="row"><label for="default_category"><?php _e('Default Post Category') ?></label></th> 70 72 <td> -
src/wp-includes/version.php
11 11 * 12 12 * @global int $wp_db_version 13 13 */ 14 $wp_db_version = 32 378;14 $wp_db_version = 32453; 15 15 16 16 /** 17 17 * Holds the TinyMCE version