Make WordPress Core


Ignore:
Timestamp:
02/22/2008 07:43:06 AM (18 years ago)
Author:
westi
Message:

Styling updates for the settings pages. Fixes #5959 props iammattthomas.

File:
1 edited

Legend:

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

    r6850 r6978  
    1616<th scope="row"><?php _e('Default article settings') ?></th>
    1717<td>
    18 <ul>
    19 <li>
    2018<label for="default_pingback_flag">
    2119<input name="default_pingback_flag" type="checkbox" id="default_pingback_flag" value="1" <?php checked('1', get_option('default_pingback_flag')); ?> />
    2220<?php _e('Attempt to notify any blogs linked to from the article (slows down posting.)') ?></label>
    23 </li>
    24 <li>
     21<br />
    2522<label for="default_ping_status">
    2623<input name="default_ping_status" type="checkbox" id="default_ping_status" value="open" <?php checked('open', get_option('default_ping_status')); ?> />
    2724<?php _e('Allow link notifications from other blogs (pingbacks and trackbacks.)') ?></label>
    28 </li>
    29 <li>
     25<br />
    3026<label for="default_comment_status">
    3127<input name="default_comment_status" type="checkbox" id="default_comment_status" value="open" <?php checked('open', get_option('default_comment_status')); ?> />
    3228<?php _e('Allow people to post comments on the article') ?></label>
    33 </li>
    34 </ul>
     29<br />
    3530<small><em><?php echo '(' . __('These settings may be overridden for individual articles.') . ')'; ?></em></small>
    3631</td>
     
    3934<th scope="row"><?php _e('E-mail me whenever') ?></th>
    4035<td>
    41 <ul>
    42 <li>
    4336<label for="comments_notify">
    4437<input name="comments_notify" type="checkbox" id="comments_notify" value="1" <?php checked('1', get_option('comments_notify')); ?> />
    4538<?php _e('Anyone posts a comment') ?> </label>
    46 </li>
    47 <li>
     39<br />
    4840<label for="moderation_notify">
    4941<input name="moderation_notify" type="checkbox" id="moderation_notify" value="1" <?php checked('1', get_option('moderation_notify')); ?> />
    5042<?php _e('A comment is held for moderation') ?> </label>
    51 </li>
    52 </ul>
    5343</td>
    5444</tr>
     
    5646<th scope="row"><?php _e('Before a comment appears') ?></th>
    5747<td>
    58 <ul>
    59 <li>
    6048<label for="comment_moderation">
    6149<input name="comment_moderation" type="checkbox" id="comment_moderation" value="1" <?php checked('1', get_option('comment_moderation')); ?> />
    6250<?php _e('An administrator must always approve the comment') ?> </label>
    63 </li>
    64 <li><label for="require_name_email"><input type="checkbox" name="require_name_email" id="require_name_email" value="1" <?php checked('1', get_option('require_name_email')); ?> /> <?php _e('Comment author must fill out name and e-mail') ?></label></li>
    65 <li><label for="comment_whitelist"><input type="checkbox" name="comment_whitelist" id="comment_whitelist" value="1" <?php checked('1', get_option('comment_whitelist')); ?> /> <?php _e('Comment author must have a previously approved comment') ?></label></li>
     51<br />
     52<label for="require_name_email"><input type="checkbox" name="require_name_email" id="require_name_email" value="1" <?php checked('1', get_option('require_name_email')); ?> /> <?php _e('Comment author must fill out name and e-mail') ?></label>
     53<br />
     54<label for="comment_whitelist"><input type="checkbox" name="comment_whitelist" id="comment_whitelist" value="1" <?php checked('1', get_option('comment_whitelist')); ?> /> <?php _e('Comment author must have a previously approved comment') ?></label></li>
    6655</ul>
    6756</td>
Note: See TracChangeset for help on using the changeset viewer.