From 10eb9da8572c3729053d0052493d82200e5e1dcf Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 17 May 2007 13:42:14 +0100 Subject: get feed_id from article ref_id in outputArticleXML() --- functions.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'functions.php') diff --git a/functions.php b/functions.php index b12689fb7..3cfcef875 100644 --- a/functions.php +++ b/functions.php @@ -3401,6 +3401,14 @@ function outputArticleXML($link, $id, $feed_id, $mark_as_read = true) { + /* we can figure out feed_id from article id anyway, why do we + * pass feed_id here? */ + + $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries + WHERE ref_id = '$id'"); + + $feed_id = db_fetch_result($result, 0, "feed_id"); + print "