From: Andrew Dolgov Date: Thu, 22 Jun 2006 05:35:29 +0000 (+0100) Subject: fix display of site url in viewfeed mode X-Git-Tag: 1.2.1~8 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=c7188969ddd3777cecf38f02822c738b4a6f8df4;p=tt-rss.git fix display of site url in viewfeed mode --- diff --git a/backend.php b/backend.php index 0ca64822..d78d5cd2 100644 --- a/backend.php +++ b/backend.php @@ -785,6 +785,8 @@ $result = $qfh_ret[0]; $feed_title = $qfh_ret[1]; + $feed_site_url = $qfh_ret[2]; + $last_error = $qfh_ret[3]; /// STOP ////////////////////////////////////////////////////////////////////////////////// diff --git a/functions.php b/functions.php index f56ee34d..d246ee98 100644 --- a/functions.php +++ b/functions.php @@ -1990,7 +1990,7 @@ $limit_query_part"); } - return array($result, $feed_title); + return array($result, $feed_title, $feed_site_url, $last_error); }