From 18186149495108becf8e07344cbafef9110b5aa3 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 20 Jul 2016 15:38:42 +0300 Subject: [PATCH] api: fix article guid not being passed to render article hook --- classes/api.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/classes/api.php b/classes/api.php index 9be04cff9..35c5d5f38 100644 --- a/classes/api.php +++ b/classes/api.php @@ -330,7 +330,7 @@ class API extends Handler { if ($article_id) { - $query = "SELECT id,title,link,content,feed_id,comments,int_id, + $query = "SELECT id,guid,title,link,content,feed_id,comments,int_id, marked,unread,published,score,note,lang, ".SUBSTRING_FOR_DATE."(updated,1,16) as updated, author,(SELECT title FROM ttrss_feeds WHERE id = feed_id) AS feed_title, @@ -352,6 +352,7 @@ class API extends Handler { $article = array( "id" => $line["id"], + "guid" => $line["guid"], "title" => $line["title"], "link" => $line["link"], "labels" => get_article_labels($line['id']), @@ -753,6 +754,7 @@ class API extends Handler { $headline_row = array( "id" => (int)$line["id"], + "guid" => $line["guid"], "unread" => sql_bool_to_bool($line["unread"]), "marked" => sql_bool_to_bool($line["marked"]), "published" => sql_bool_to_bool($line["published"]),