Changeset 546 for trunk/b2comments.php
- Timestamp:
- 11/12/2003 03:22:47 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/b2comments.php
r517 r546 15 15 $comment_author_url = trim($HTTP_COOKIE_VARS["comment_author_url_".$cookiehash]); 16 16 17 $comments = $wpdb->get_results("SELECT * FROM $tablecomments WHERE comment_post_ID = $id ORDER BY comment_date");17 $comments = $wpdb->get_results("SELECT * FROM $tablecomments WHERE comment_post_ID = $id AND comment_approved = '1' ORDER BY comment_date"); 18 18 ?> 19 19 … … 74 74 </p> 75 75 76 <?php 77 if ('none' != get_settings("comment_moderation")) { 78 ?> 79 <p> 80 <strong>Please note:</strong><br /> 81 This blog uses comment moderation. In other words: your comment will need approval 82 by the administrator before it will appear in the blog. Approval usually happens 83 within the next 24 hours. Please send your comment only once. Thank you. 84 </p> 85 <?php 86 } // comment_moderation != 'none' 87 ?> 88 76 89 <p> 77 90 <input name="submit" type="submit" tabindex="5" value="Say it!" />
Note: See TracChangeset
for help on using the changeset viewer.