From 26eb0119a591db451551bb11afe214b23725c8fc Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 16 Aug 2006 14:19:24 +0100 Subject: [PATCH] use getCategoryUnread in outputFeedList, misc fixes --- backend.php | 16 ++-------------- mobile/functions.php | 11 ++--------- 2 files changed, 4 insertions(+), 23 deletions(-) diff --git a/backend.php b/backend.php index 428939fe9..583ab658f 100644 --- a/backend.php +++ b/backend.php @@ -364,21 +364,9 @@ $ellipsis = ""; } - if ($cat_id) { - $cat_id_qpart = "cat_id = '$cat_id'"; - } else { - $cat_id_qpart = "cat_id IS NULL"; - } - - $tmp_result = db_query($link, "SELECT count(int_id) AS unread - FROM ttrss_user_entries,ttrss_feeds WHERE - unread = true AND - feed_id = ttrss_feeds.id AND $cat_id_qpart AND - ttrss_user_entries.owner_uid = " . $_SESSION["uid"]); - - $cat_unread = db_fetch_result($tmp_result, 0, "unread"); - $cat_id = sprintf("%d", $cat_id); + + $cat_unread = getCategoryUnread($link, $cat_id); print "
  • $tmp_category diff --git a/mobile/functions.php b/mobile/functions.php index d35e6e237..398a12a55 100644 --- a/mobile/functions.php +++ b/mobile/functions.php @@ -204,16 +204,9 @@ $cat_id_qpart = "cat_id IS NULL"; } - $tmp_result = db_query($link, "SELECT count(int_id) AS unread - FROM ttrss_user_entries,ttrss_feeds WHERE - unread = true AND - feed_id = ttrss_feeds.id AND $cat_id_qpart AND - ttrss_user_entries.owner_uid = " . $_SESSION["uid"]); - - $cat_unread = db_fetch_result($tmp_result, 0, "unread"); - $cat_id = sprintf("%d", $cat_id); - + $cat_unread = getCategoryUnread($link, $cat_id); + print "
  • $tmp_category