From 9dcdbbd7aea366a0e21f0abaf792cf81a222d4b9 Mon Sep 17 00:00:00 2001 From: rob1n Date: Wed, 11 Apr 2007 03:12:11 +0000 Subject: [PATCH] Tweak displaying comments awaiting moderation to their authors. Props wnorris. fixes #4108 git-svn-id: https://develop.svn.wordpress.org/trunk@5238 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/comment-template.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wp-includes/comment-template.php b/wp-includes/comment-template.php index 02ea682f2d..ed41bb6f12 100644 --- a/wp-includes/comment-template.php +++ b/wp-includes/comment-template.php @@ -288,7 +288,9 @@ function comments_template( $file = '/comments.php' ) { extract($commenter); // TODO: Use API instead of SELECTs. - if ( empty($comment_author) ) { + if ( $user_ID) { + $comments = $wpdb->get_results("SELECT * FROM $wpdb->comments WHERE comment_post_ID = '$post->ID' AND (comment_approved = '1' OR ( user_id = '$user_ID' AND comment_approved = '0' ) ) ORDER BY comment_date"); + } else if ( empty($comment_author) ) { $comments = $wpdb->get_results("SELECT * FROM $wpdb->comments WHERE comment_post_ID = '$post->ID' AND comment_approved = '1' ORDER BY comment_date"); } else { $author_db = $wpdb->escape($comment_author);