From: Andrew Dolgov Date: Wed, 16 Aug 2006 12:53:04 +0000 (+0100) Subject: fix getGlobalCounters re hidden feeds X-Git-Tag: schema_freeze_for_1.2.2~4 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=3831db41c4b24050ad0ef2d0b58a5a042d4313bb;p=tt-rss.git fix getGlobalCounters re hidden feeds --- 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; }