diff --git a/backend.php b/backend.php index b8455b485..cd7d65c2d 100644 --- a/backend.php +++ b/backend.php @@ -2175,7 +2175,7 @@ $result = db_query($link, "SELECT - title,feed_url,last_updated, + title,feed_url,last_updated,icon_url, (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE feed_id = id) AS total, (SELECT COUNT(int_id) FROM ttrss_user_entries @@ -2190,19 +2190,39 @@ $title = db_fetch_result($result, 0, "title"); $last_updated = db_fetch_result($result, 0, "last_updated"); $feed_url = db_fetch_result($result, 0, "feed_url"); + $icon_url = db_fetch_result($result, 0, "icon_url"); $total = db_fetch_result($result, 0, "total"); $unread = db_fetch_result($result, 0, "unread"); $marked = db_fetch_result($result, 0, "marked"); - print "
Feed URL | $feed_url |
Feed URL | +$feed_url |
Last updated | $last_updated |
Total articles | $total |
Unread articles | $unread |
Starred articles | $marked |
Subscribed users | $subscribed |