Make WordPress Core


Ignore:
Timestamp:
02/14/2008 05:19:39 AM (19 years ago)
Author:
ryan
Message:

Styling updates for settings. see #5851

File:
1 edited

Legend:

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

    r6838 r6841  
    1212<form method="post" action="options.php">
    1313<?php wp_nonce_field('update-options') ?>
    14 <h3><?php _e('Usual settings for an article:') ?></h3>
    15 <small><em><?php echo '(' . __('These settings may be overridden for individual articles.') . ')'; ?></em></small>
     14<table class="niceblue">
     15<tr valign="top">
     16<th scope="row"><?php _e('Default article settings') ?></th>
     17<td>
    1618<ul>
    1719<li>
     
    3133</li>
    3234</ul>
    33 
    34 <h3><?php _e('E-mail me whenever:') ?></h3>
     35<small><em><?php echo '(' . __('These settings may be overridden for individual articles.') . ')'; ?></em></small>
     36</td>
     37</tr>
     38<tr valign="top">
     39<th scope="row"><?php _e('E-mail me whenever') ?></th>
     40<td>
    3541<ul>
    3642<li>
     
    4551</li>
    4652</ul>
    47 
    48 <h3><?php _e('Before a comment appears:') ?></h3>
     53</td>
     54</tr>
     55<tr valign="top">
     56<th scope="row"><?php _e('Before a comment appears') ?></th>
     57<td>
    4958<ul>
    5059<li>
     
    5665<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>
    5766</ul>
    58 
    59 <h3><?php _e('Comment Moderation') ?></h3>
     67</td>
     68</tr>
     69<tr valign="top">
     70<th scope="row"><?php _e('Comment Moderation') ?></th>
     71<td>
    6072<p><?php printf(__('Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)'), '<input name="comment_max_links" type="text" id="comment_max_links" size="3" value="' . get_option('comment_max_links'). '" />' ) ?></p>
    6173
     
    6476<textarea name="moderation_keys" cols="60" rows="4" id="moderation_keys" style="width: 98%; font-size: 12px;" class="code"><?php form_option('moderation_keys'); ?></textarea>
    6577</p>
    66 
    67 <h3><?php _e('Comment Blacklist') ?></h3>
     78</td>
     79</tr>
     80<tr valign="top">
     81<th scope="row"><?php _e('Comment Blacklist') ?></th>
     82<td>
    6883<p><?php _e('When a comment contains any of these words in its content, name, URL, e-mail, or IP, it will be marked as spam. One word or IP per line. It will match inside words, so "press" will match "WordPress".') ?></p>
    6984<p>
    7085<textarea name="blacklist_keys" cols="60" rows="4" id="blacklist_keys" style="width: 98%; font-size: 12px;" class="code"><?php form_option('blacklist_keys'); ?></textarea>
    7186</p>
     87</td>
     88</tr>
     89</table>
    7290
    7391<p class="submit">
Note: See TracChangeset for help on using the changeset viewer.