Make WordPress Core

Ticket #22198: 22198.diff

File 22198.diff, 1.8 KB (added by obenland, 11 years ago)

Rearranges hierarchy in default articles settings

  • wp-admin/options-discussion.php

     
    4040<tr valign="top">
    4141<th scope="row"><?php _e('Default article settings'); ?></th>
    4242<td><fieldset><legend class="screen-reader-text"><span><?php _e('Default article settings'); ?></span></legend>
     43<label for="default_comment_status">
     44<input name="default_comment_status" type="checkbox" id="default_comment_status" value="open" <?php checked('open', get_option('default_comment_status')); ?> />
     45<?php _e('Allow people to post comments on new articles'); ?></label>
     46<p class="description"><?php echo '(' . __( 'These settings may be overridden for individual articles.' ) . ')'; ?></p>
     47<br />
    4348<label for="default_pingback_flag">
    4449<input name="default_pingback_flag" type="checkbox" id="default_pingback_flag" value="1" <?php checked('1', get_option('default_pingback_flag')); ?> />
    4550<?php _e('Attempt to notify any blogs linked to from the article'); ?></label>
     
    4752<label for="default_ping_status">
    4853<input name="default_ping_status" type="checkbox" id="default_ping_status" value="open" <?php checked('open', get_option('default_ping_status')); ?> />
    4954<?php _e('Allow link notifications from other blogs (pingbacks and trackbacks)'); ?></label>
    50 <br />
    51 <label for="default_comment_status">
    52 <input name="default_comment_status" type="checkbox" id="default_comment_status" value="open" <?php checked('open', get_option('default_comment_status')); ?> />
    53 <?php _e('Allow people to post comments on new articles'); ?></label>
    54 <br />
    55 <p class="description"><?php echo '(' . __( 'These settings may be overridden for individual articles.' ) . ')'; ?></p>
    5655</fieldset></td>
    5756</tr>
    5857<tr valign="top">