Changeset 6978 for trunk/wp-admin/options-discussion.php
- Timestamp:
- 02/22/2008 07:43:06 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/options-discussion.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-discussion.php
r6850 r6978 16 16 <th scope="row"><?php _e('Default article settings') ?></th> 17 17 <td> 18 <ul>19 <li>20 18 <label for="default_pingback_flag"> 21 19 <input name="default_pingback_flag" type="checkbox" id="default_pingback_flag" value="1" <?php checked('1', get_option('default_pingback_flag')); ?> /> 22 20 <?php _e('Attempt to notify any blogs linked to from the article (slows down posting.)') ?></label> 23 </li> 24 <li> 21 <br /> 25 22 <label for="default_ping_status"> 26 23 <input name="default_ping_status" type="checkbox" id="default_ping_status" value="open" <?php checked('open', get_option('default_ping_status')); ?> /> 27 24 <?php _e('Allow link notifications from other blogs (pingbacks and trackbacks.)') ?></label> 28 </li> 29 <li> 25 <br /> 30 26 <label for="default_comment_status"> 31 27 <input name="default_comment_status" type="checkbox" id="default_comment_status" value="open" <?php checked('open', get_option('default_comment_status')); ?> /> 32 28 <?php _e('Allow people to post comments on the article') ?></label> 33 </li> 34 </ul> 29 <br /> 35 30 <small><em><?php echo '(' . __('These settings may be overridden for individual articles.') . ')'; ?></em></small> 36 31 </td> … … 39 34 <th scope="row"><?php _e('E-mail me whenever') ?></th> 40 35 <td> 41 <ul>42 <li>43 36 <label for="comments_notify"> 44 37 <input name="comments_notify" type="checkbox" id="comments_notify" value="1" <?php checked('1', get_option('comments_notify')); ?> /> 45 38 <?php _e('Anyone posts a comment') ?> </label> 46 </li> 47 <li> 39 <br /> 48 40 <label for="moderation_notify"> 49 41 <input name="moderation_notify" type="checkbox" id="moderation_notify" value="1" <?php checked('1', get_option('moderation_notify')); ?> /> 50 42 <?php _e('A comment is held for moderation') ?> </label> 51 </li>52 </ul>53 43 </td> 54 44 </tr> … … 56 46 <th scope="row"><?php _e('Before a comment appears') ?></th> 57 47 <td> 58 <ul>59 <li>60 48 <label for="comment_moderation"> 61 49 <input name="comment_moderation" type="checkbox" id="comment_moderation" value="1" <?php checked('1', get_option('comment_moderation')); ?> /> 62 50 <?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> 66 55 </ul> 67 56 </td>
Note: See TracChangeset
for help on using the changeset viewer.