From 3831db41c4b24050ad0ef2d0b58a5a042d4313bb Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 16 Aug 2006 13:53:04 +0100 Subject: [PATCH] fix getGlobalCounters re hidden feeds --- functions.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/functions.php b/functions.php index 81da7256..5a0e75c1 100644 --- a/functions.php +++ b/functions.php @@ -1553,10 +1553,12 @@ /* FIXME this needs reworking */ function getGlobalUnread($link) { - $result = db_query($link, "SELECT count(id) as c_id FROM ttrss_entries,ttrss_user_entries + $result = db_query($link, "SELECT count(ttrss_entries.id) as c_id FROM ttrss_entries,ttrss_user_entries,ttrss_feeds WHERE unread = true AND + ttrss_user_entries.feed_id = ttrss_feeds.id AND ttrss_user_entries.ref_id = ttrss_entries.id AND - owner_uid = " . $_SESSION["uid"]); + hidden = false AND + ttrss_user_entries.owner_uid = " . $_SESSION["uid"]); $c_id = db_fetch_result($result, 0, "c_id"); return $c_id; } -- 2.39.2