From 0b84d1d0dcec0c01c00870d0da540a6db00a7770 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 7 Dec 2018 18:38:27 +0300 Subject: [PATCH] viewfeed: add orig_feed object --- classes/feeds.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/classes/feeds.php b/classes/feeds.php index 90add2297..189a1e6b7 100755 --- a/classes/feeds.php +++ b/classes/feeds.php @@ -330,6 +330,17 @@ class Feeds extends Handler_Protected { $line["enclosures"] = Article::format_article_enclosures($id, $line["always_display_enclosures"], $line["content"], $line["hide_images"]); + + if ($line["orig_feed_id"]) { + + $ofgh = $this->pdo->prepare("SELECT * FROM ttrss_archived_feeds + WHERE id = ? AND owner_uid = ?"); + $ofgh->execute([$line["orig_feed_id"], $_SESSION['uid']]); + + if ($tmp_line = $ofgh->fetch()) { + $line["orig_feed"] = [ $tmp_line["title"], $tmp_line["site_url"], $tmp_line["feed_url"] ]; + } + } }