Changeset 6837 for trunk/wp-admin/options-discussion.php
- Timestamp:
- 02/14/2008 02:40:17 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-discussion.php
r6833 r6837 13 13 <?php wp_nonce_field('update-options') ?> 14 14 <p class="submit"><input type="submit" name="Submit" value="<?php _e('Save Changes »') ?>" /></p> 15 < fieldset class="options">16 < legend><?php echo __('Usual settings for an article:').'<br /><small><em>('.__('These settings may be overridden for individual articles.').')</em></small>'; ?></legend>15 <h3><?php _e('Usual settings for an article:') ?></h3> 16 <small><em><?php echo '(' . __('These settings may be overridden for individual articles.') . ')'; ?></em></small> 17 17 <ul> 18 18 <li> … … 32 32 </li> 33 33 </ul> 34 </fieldset> 35 <fieldset class="options"> 36 <legend><?php _e('E-mail me whenever:') ?></legend> 34 35 <h3><?php _e('E-mail me whenever:') ?></h3> 37 36 <ul> 38 37 <li> … … 47 46 </li> 48 47 </ul> 49 </fieldset> 50 <fieldset class="options"> 51 <legend><?php _e('Before a comment appears:') ?></legend> 48 49 <h3><?php _e('Before a comment appears:') ?></h3> 52 50 <ul> 53 51 <li> … … 59 57 <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> 60 58 </ul> 61 </fieldset> 62 <fieldset class="options"> 63 <legend><?php _e('Comment Moderation') ?></legend> 59 60 <h3><?php _e('Comment Moderation') ?></h3> 64 61 <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> 65 62 … … 68 65 <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> 69 66 </p> 70 </fieldset> 71 <fieldset class="options"> 72 <legend><?php _e('Comment Blacklist') ?></legend> 67 68 <h3><?php _e('Comment Blacklist') ?></h3> 73 69 <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> 74 70 <p> 75 71 <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> 76 72 </p> 77 </fieldset> 73 78 74 <p class="submit"> 79 75 <input type="hidden" name="action" value="update" />
Note: See TracChangeset
for help on using the changeset viewer.