Make WordPress Core

Changeset 32454


Ignore:
Timestamp:
05/08/2015 06:51:52 AM (9 years ago)
Author:
pento
Message:

On the Writing Options screen, hide the Balance Tags and Convert Smilies options on new installs.

Fixes #5161.
Fixes #32298.

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/options-writing.php

    r32116 r32454  
    5757
    5858<table class="form-table">
     59<?php if ( get_site_option( 'initial_db_version' ) < 32453 ) : ?>
    5960<tr>
    6061<th scope="row"><?php _e('Formatting') ?></th>
     
    6667</fieldset></td>
    6768</tr>
     69<?php endif; ?>
    6870<tr>
    6971<th scope="row"><label for="default_category"><?php _e('Default Post Category') ?></label></th>
  • trunk/src/wp-includes/version.php

    r32378 r32454  
    1212 * @global int $wp_db_version
    1313 */
    14 $wp_db_version = 32378;
     14$wp_db_version = 32453;
    1515
    1616/**
Note: See TracChangeset for help on using the changeset viewer.