1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-29 14:21:29 +00:00

catchup_feed: add clause for feed_id -4

This commit is contained in:
Andrew Dolgov
2009-01-19 04:28:25 +01:00
parent 3ebd7ca5f3
commit 3584cb119e

View File

@@ -2218,6 +2218,12 @@
catchupArticlesById($link, $affected_ids, 0);
}
if ($feed == -4) {
db_query($link, "UPDATE ttrss_user_entries
SET unread = false,last_read = NOW()
WHERE owner_uid = ".$_SESSION["uid"]);
}
} else if ($feed < -10) { // label
$label_id = -$feed - 11;