summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-12-11 08:36:40 +0100
committerAndrew Dolgov <[email protected]>2005-12-11 08:36:40 +0100
commitf42e94357e86dd0e775a9affed9926392e56ad81 (patch)
tree13e0cdb560fd5a35f089d900cd61385647cc65ad /backend.php
parenta426e532a6919e718193fcc95e69456701423aa6 (diff)
fix feed-details title unescaping, pref-feeds Link->Feed
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/backend.php b/backend.php
index efb583258..9e206c93b 100644
--- a/backend.php
+++ b/backend.php
@@ -1660,7 +1660,7 @@
print "<tr class=\"title\">
<td width='5%' align='center'></td>
<td width='30%'><a href=\"javascript:updateFeedList('title')\">Title</a></td>
- <td width='30%'><a href=\"javascript:updateFeedList('feed_url')\">Link</a></td>
+ <td width='30%'><a href=\"javascript:updateFeedList('feed_url')\">Feed</a></td>
<td width='15%'><a href=\"javascript:updateFeedList('update_interval')\">Update Interval</a></td>
<td width='15%'><a href=\"javascript:updateFeedList('purge_interval')\">Purge Days</a></td></tr>";
}
@@ -1694,7 +1694,7 @@
print "<tr class=\"title\">
<td width='5%' align='center'></td>
<td width='30%'><a href=\"javascript:updateFeedList('title')\">Title</a></td>
- <td width='30%'><a href=\"javascript:updateFeedList('feed_url')\">Link</a></td>
+ <td width='30%'><a href=\"javascript:updateFeedList('feed_url')\">Feed</a></td>
<td width='15%'><a href=\"javascript:updateFeedList('update_interval')\">Update Interval</a></td>
<td width='15%'><a href=\"javascript:updateFeedList('purge_interval')\">Purge Days</a></td></tr>";
@@ -3320,7 +3320,7 @@
if (db_num_rows($result) == 0) return;
- $title = db_fetch_result($result, 0, "title");
+ $title = db_unescape_string(db_fetch_result($result, 0, "title"));
$last_updated = date(get_pref($link, 'LONG_DATE_FORMAT'),
strtotime(db_fetch_result($result, 0, "last_updated")));
$feed_url = db_fetch_result($result, 0, "feed_url");