Changeset 4144 for trunk/wp-admin/options-discussion.php
- Timestamp:
- 08/30/2006 09:46:31 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/options-discussion.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-discussion.php
r4133 r4144 28 28 <li> 29 29 <label for="default_pingback_flag"> 30 <input name="default_pingback_flag" type="checkbox" id="default_pingback_flag" value="1" <?php checked('1', get_ settings('default_pingback_flag')); ?> />30 <input name="default_pingback_flag" type="checkbox" id="default_pingback_flag" value="1" <?php checked('1', get_option('default_pingback_flag')); ?> /> 31 31 <?php _e('Attempt to notify any Weblogs linked to from the article (slows down posting.)') ?></label> 32 32 </li> 33 33 <li> 34 34 <label for="default_ping_status"> 35 <input name="default_ping_status" type="checkbox" id="default_ping_status" value="open" <?php checked('open', get_ settings('default_ping_status')); ?> />35 <input name="default_ping_status" type="checkbox" id="default_ping_status" value="open" <?php checked('open', get_option('default_ping_status')); ?> /> 36 36 <?php _e('Allow link notifications from other Weblogs (pingbacks and trackbacks.)') ?></label> 37 37 </li> 38 38 <li> 39 39 <label for="default_comment_status"> 40 <input name="default_comment_status" type="checkbox" id="default_comment_status" value="open" <?php checked('open', get_ settings('default_comment_status')); ?> />40 <input name="default_comment_status" type="checkbox" id="default_comment_status" value="open" <?php checked('open', get_option('default_comment_status')); ?> /> 41 41 <?php _e('Allow people to post comments on the article') ?></label> 42 42 </li> … … 48 48 <li> 49 49 <label for="comments_notify"> 50 <input name="comments_notify" type="checkbox" id="comments_notify" value="1" <?php checked('1', get_ settings('comments_notify')); ?> />50 <input name="comments_notify" type="checkbox" id="comments_notify" value="1" <?php checked('1', get_option('comments_notify')); ?> /> 51 51 <?php _e('Anyone posts a comment') ?> </label> 52 52 </li> 53 53 <li> 54 54 <label for="moderation_notify"> 55 <input name="moderation_notify" type="checkbox" id="moderation_notify" value="1" <?php checked('1', get_ settings('moderation_notify')); ?> />55 <input name="moderation_notify" type="checkbox" id="moderation_notify" value="1" <?php checked('1', get_option('moderation_notify')); ?> /> 56 56 <?php _e('A comment is held for moderation') ?> </label> 57 57 </li> … … 63 63 <li> 64 64 <label for="comment_moderation"> 65 <input name="comment_moderation" type="checkbox" id="comment_moderation" value="1" <?php checked('1', get_ settings('comment_moderation')); ?> />65 <input name="comment_moderation" type="checkbox" id="comment_moderation" value="1" <?php checked('1', get_option('comment_moderation')); ?> /> 66 66 <?php _e('An administrator must approve the comment (regardless of any matches below)') ?> </label> 67 67 </li> 68 <li><label for="require_name_email"><input type="checkbox" name="require_name_email" id="require_name_email" value="1" <?php checked('1', get_ settings('require_name_email')); ?> /> <?php _e('Comment author must fill out name and e-mail') ?></label></li>69 <li><label for="comment_whitelist"><input type="checkbox" name="comment_whitelist" id="comment_whitelist" value="1" <?php checked('1', get_ settings('comment_whitelist')); ?> /> <?php _e('Comment author must have a previously approved comment') ?></label></li>68 <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> 69 <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> 70 70 </ul> 71 71 </fieldset> 72 72 <fieldset class="options"> 73 73 <legend><?php _e('Comment Moderation') ?></legend> 74 <p><?php printf(__('Hold a comment in the queue if it contains more than %s 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_ settings('comment_max_links'). '" />' ) ?></p>74 <p><?php printf(__('Hold a comment in the queue if it contains more than %s 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> 75 75 76 76 <p><?php _e('When a comment contains any of these words in its content, name, URL, e-mail, or IP, hold it in the moderation queue: (Separate multiple words with new lines.) <a href="http://codex.wordpress.org/Spam_Words">Common spam words</a>.') ?></p> … … 89 89 </p> 90 90 <p><label for="open_proxy_check"> 91 <input name="open_proxy_check" type="checkbox" id="open_proxy_check" value="1" <?php checked('1', get_ settings('open_proxy_check')); ?> />91 <input name="open_proxy_check" type="checkbox" id="open_proxy_check" value="1" <?php checked('1', get_option('open_proxy_check')); ?> /> 92 92 <?php _e('Blacklist comments from open and insecure proxies.') ?></label></p> 93 93 </fieldset>
Note: See TracChangeset
for help on using the changeset viewer.