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:
parent
6467281a2b
commit
03a9059cdc
@ -263,7 +263,7 @@ class WP_Comment_Query {
|
|||||||
$approved = "comment_approved = '0'";
|
$approved = "comment_approved = '0'";
|
||||||
elseif ( 'approve' == $status )
|
elseif ( 'approve' == $status )
|
||||||
$approved = "comment_approved = '1'";
|
$approved = "comment_approved = '1'";
|
||||||
elseif ( ! empty( $status ) )
|
elseif ( ! empty( $status ) && 'all' != $status )
|
||||||
$approved = $wpdb->prepare( "comment_approved = %s", $status );
|
$approved = $wpdb->prepare( "comment_approved = %s", $status );
|
||||||
else
|
else
|
||||||
$approved = "( comment_approved = '0' OR comment_approved = '1' )";
|
$approved = "( comment_approved = '0' OR comment_approved = '1' )";
|
||||||
|
Loading…
Reference in New Issue
Block a user