Ticket #22198: 22198.diff
File 22198.diff, 1.8 KB (added by , 11 years ago) |
---|
-
wp-admin/options-discussion.php
40 40 <tr valign="top"> 41 41 <th scope="row"><?php _e('Default article settings'); ?></th> 42 42 <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 /> 43 48 <label for="default_pingback_flag"> 44 49 <input name="default_pingback_flag" type="checkbox" id="default_pingback_flag" value="1" <?php checked('1', get_option('default_pingback_flag')); ?> /> 45 50 <?php _e('Attempt to notify any blogs linked to from the article'); ?></label> … … 47 52 <label for="default_ping_status"> 48 53 <input name="default_ping_status" type="checkbox" id="default_ping_status" value="open" <?php checked('open', get_option('default_ping_status')); ?> /> 49 54 <?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>56 55 </fieldset></td> 57 56 </tr> 58 57 <tr valign="top">