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:
Alex King 2004-01-05 09:01:41 +00:00
parent 57bae08ef5
commit b8acccdea9
1 changed files with 0 additions and 2 deletions

View File

@ -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");