From 6f69764ccff1c231ebfa3e4cbd32465f34c96d02 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 12 Feb 2009 15:01:42 +0300 Subject: implement catchup for labels vfeed --- functions.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'functions.php') diff --git a/functions.php b/functions.php index 6e386c508..50a4d607b 100644 --- a/functions.php +++ b/functions.php @@ -2144,7 +2144,11 @@ } } else if ($feed == -2) { - /* FIXME catchup for all labels vfeed */ + + db_query($link, "UPDATE ttrss_user_entries + SET unread = false,last_read = NOW() WHERE (SELECT COUNT(*) + FROM ttrss_user_labels2 WHERE article_id = ref_id) > 0 + AND unread = true AND owner_uid = " . $_SESSION["uid"]); } } else if ($feed > 0) { -- cgit v1.2.3