removed check to post_category > 0
git-svn-id: https://develop.svn.wordpress.org/trunk@722 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
57bae08ef5
commit
b8acccdea9
@ -55,7 +55,6 @@ foreach ($posts as $post) { start_wp();
|
||||
WHERE comment_post_ID = '$id'
|
||||
AND $tablecomments.comment_approved = '1'
|
||||
AND $tableposts.post_status = 'publish'
|
||||
AND post_category > '0'
|
||||
AND post_date < '".date("Y-m-d H:i:s")."'
|
||||
ORDER BY comment_date
|
||||
LIMIT $posts_per_rss");
|
||||
@ -74,7 +73,6 @@ foreach ($posts as $post) { start_wp();
|
||||
LEFT JOIN $tableposts ON comment_post_id = id
|
||||
WHERE $tableposts.post_status = 'publish'
|
||||
AND $tablecomments.comment_approved = '1'
|
||||
AND post_category > '0'
|
||||
AND post_date < '".date("Y-m-d H:i:s")."'
|
||||
ORDER BY comment_date DESC
|
||||
LIMIT $posts_per_rss");
|
||||
|
Loading…
Reference in New Issue
Block a user