From d232a40f8b966aab1d4cfa57461b60844d535196 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 16 Jan 2009 17:41:21 +0100 Subject: category counters: code cleanup --- functions.php | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'functions.php') diff --git a/functions.php b/functions.php index 97d34dd55..a3fc5d5c9 100644 --- a/functions.php +++ b/functions.php @@ -2334,25 +2334,25 @@ $age_qpart = getMaxAgeSubquery(); -/* $result = db_query($link, "SELECT cat_id,SUM((SELECT COUNT(int_id) - FROM ttrss_user_entries, ttrss_entries WHERE feed_id = ttrss_feeds.id - AND id = ref_id AND $age_qpart - AND unread = true)) AS unread FROM ttrss_feeds + $result = db_query($link, "SELECT cat_id, value AS unread + FROM ttrss_feeds, ttrss_cat_counters_cache WHERE - hidden = false AND owner_uid = ".$_SESSION["uid"]." GROUP BY cat_id"); */ - - $result = db_query($link, "SELECT cat_id FROM ttrss_feeds - WHERE - hidden = false AND owner_uid = ".$_SESSION["uid"]." GROUP BY cat_id"); + ttrss_cat_counters_cache.feed_id = cat_id AND + hidden = false AND + ttrss_feeds.owner_uid = ".$_SESSION["uid"]." GROUP BY cat_id"); while ($line = db_fetch_assoc($result)) { $line["cat_id"] = sprintf("%d", $line["cat_id"]); - $line["unread"] = ccache_find($link, $line["cat_id"], $_SESSION["uid"], true); - print ""; } + + /* Special case: NULL category doesn't actually exist in the DB */ + + print ""; + } function getCategoryUnread($link, $cat) { -- cgit v1.2.3