From bfe5ddfc823f87f31934f8c3951f5ab0a62acd5a Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 9 Sep 2010 22:08:17 +0400 Subject: queryFeedHeadlines: properly handle Uncategorized category --- functions.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'functions.php') diff --git a/functions.php b/functions.php index 05eb85909..2f895cd30 100644 --- a/functions.php +++ b/functions.php @@ -3455,8 +3455,11 @@ $query_strategy_part = "feed_id = '$feed'"; } } - } else if ($feed == 0) { // starred virtual feed + } else if ($feed == 0 && !$cat_view) { // archive virtual feed $query_strategy_part = "feed_id IS NULL"; + } else if ($feed == 0 && $cat_view) { // uncategorized + $query_strategy_part = "cat_id IS NULL"; + $vfeed_query_part = "ttrss_feeds.title AS feed_title,"; } else if ($feed == -1) { // starred virtual feed $query_strategy_part = "marked = true"; $vfeed_query_part = "ttrss_feeds.title AS feed_title,"; -- cgit v1.2.3