From: Andrew Dolgov Date: Sun, 18 Jan 2009 09:41:35 +0000 (+0100) Subject: getLabelUnread: ignore hidden feeds X-Git-Tag: 1.3.0~94 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=b0f24af1da792712ebf801d1cc77d3c9bb8bd448;p=tt-rss.git getLabelUnread: ignore hidden feeds --- diff --git a/functions.php b/functions.php index 8a4fc6b4..2f7f5e9d 100644 --- a/functions.php +++ b/functions.php @@ -2406,10 +2406,10 @@ $result = db_query($link, " SELECT COUNT(unread) AS unread FROM - ttrss_user_entries, ttrss_labels2, ttrss_user_labels2 - WHERE label_id = id AND article_id = ref_id AND - ttrss_labels2.owner_uid = '$owner_uid' AND id = '$label_id' - AND unread = true + ttrss_user_entries, ttrss_labels2, ttrss_user_labels2, ttrss_feeds + WHERE label_id = ttrss_labels2.id AND article_id = ref_id AND + ttrss_labels2.owner_uid = '$owner_uid' AND ttrss_labels2.id = '$label_id' + AND unread = true AND hidden = false AND feed_id = ttrss_feeds.id AND ttrss_user_entries.owner_uid = '$owner_uid'"); if (db_num_rows($result) != 0) {