summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-12-04 20:44:44 +0100
committerAndrew Dolgov <[email protected]>2005-12-04 20:44:44 +0100
commite94645caa5d0feba13a43028a3b73cab7df86560 (patch)
treea8564ee3863e86bcd755d86f405f20686f2ce6aa /backend.php
parent3a9552024760b8ecb92f6f8100873aa0f084afb9 (diff)
user-details: subscribed feeds list points to site_url
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/backend.php b/backend.php
index e9ecec31e..b1c57c3a9 100644
--- a/backend.php
+++ b/backend.php
@@ -3158,7 +3158,7 @@
print "<h1>Subscribed feeds</h1>";
- $result = db_query($link, "SELECT id,title,feed_url FROM ttrss_feeds
+ $result = db_query($link, "SELECT id,title,site_url FROM ttrss_feeds
WHERE owner_uid = '$uid' ORDER BY title LIMIT 20");
print "<ul class=\"nomarks\">";
@@ -3173,7 +3173,7 @@
$feed_icon = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">";
}
- print "<li>$feed_icon&nbsp;<a href=\"".$line["feed_url"]."\">".$line["title"]."</a></li>";
+ print "<li>$feed_icon&nbsp;<a href=\"".$line["site_url"]."\">".$line["title"]."</a></li>";
}
if (db_num_rows($result) < $num_feeds) {