summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--backend.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/backend.php b/backend.php
index 1cfab2ab1..9078a2043 100644
--- a/backend.php
+++ b/backend.php
@@ -410,7 +410,8 @@
$subop = $_GET["subop"];
if ($subop == "catchupAll") {
- db_query($link, "UPDATE ttrss_entries SET last_read = NOW(),unread = false");
+ db_query($link, "UPDATE ttrss_entries SET
+ last_read = NOW(),unread = false WHERE owner_uid = " . $_SESSION["uid"]);
}
outputFeedList($link, $tags);