summaryrefslogtreecommitdiff
path: root/classes/api.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2016-07-20 15:38:42 +0300
committerAndrew Dolgov <[email protected]>2016-07-20 15:38:42 +0300
commit18186149495108becf8e07344cbafef9110b5aa3 (patch)
tree111abdf47660921d2f3afc5cb54d3511399fead8 /classes/api.php
parent4afcf635635c548bbad0a27b7c9c7d2b3804fc61 (diff)
api: fix article guid not being passed to render article hook
Diffstat (limited to 'classes/api.php')
-rw-r--r--classes/api.php4
1 files changed, 3 insertions, 1 deletions
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"]),