summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--backend.php1
-rw-r--r--functions.php1
2 files changed, 2 insertions, 0 deletions
diff --git a/backend.php b/backend.php
index 74cc97303..430086bf3 100644
--- a/backend.php
+++ b/backend.php
@@ -3946,6 +3946,7 @@
if ($op == "digestTest") {
header("Content-Type: text/plain");
+
echo prepare_headlines_digest($link, $_SESSION["uid"]);
$print_exec_time = false;
diff --git a/functions.php b/functions.php
index 7ec46f097..3dbe0f84b 100644
--- a/functions.php
+++ b/functions.php
@@ -2398,6 +2398,7 @@
WHERE
ref_id = ttrss_entries.id AND feed_id = ttrss_feeds.id
AND $interval_query
+ AND ttrss_user_entries.owner_uid = $user_id
AND unread = true ORDER BY ttrss_feeds.title, date_entered DESC
LIMIT $limit");