Restore the behavior of the 'all' status for comment queries. Props SergeyBiryukov. see #21101

git-svn-id: https://develop.svn.wordpress.org/trunk@22090 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2012-10-01 15:31:40 +00:00
parent 6467281a2b
commit 03a9059cdc
1 changed files with 1 additions and 1 deletions

View File

@ -263,7 +263,7 @@ class WP_Comment_Query {
$approved = "comment_approved = '0'";
elseif ( 'approve' == $status )
$approved = "comment_approved = '1'";
elseif ( ! empty( $status ) )
elseif ( ! empty( $status ) && 'all' != $status )
$approved = $wpdb->prepare( "comment_approved = %s", $status );
else
$approved = "( comment_approved = '0' OR comment_approved = '1' )";