summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-08-26 02:13:22 +0100
committerAndrew Dolgov <[email protected]>2005-08-26 02:13:22 +0100
commita3ee2a382f68f2176dcc9ad87a646ae3284c0273 (patch)
tree258077fa325203ae4769993d89ac771f78fb3271 /backend.php
parent2d84262b145b09acf4fa8daa1cf78d408ee2b1d2 (diff)
code cleanups, show selected feed in feedlist, tell magpie to use UTF-8
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/backend.php b/backend.php
index cc9b6b492..6dd80a414 100644
--- a/backend.php
+++ b/backend.php
@@ -30,7 +30,7 @@
WHERE feed_id = ttrss_feeds.id AND unread = true) as unread
FROM ttrss_feeds ORDER BY title");
- print "<table width=\"100%\" class=\"feeds\">";
+ print "<table width=\"100%\" class=\"feeds\" id=\"feedsList\">";
$lnum = 0;
@@ -302,7 +302,8 @@
print "<td id='FUPDPIC-$id' valign='center' class='headlineUpdateMark'>$update_pic</td>";
- print "<td class='headlineUpdated'>".$line["updated"]."</td>";
+ print "<td class='headlineUpdated'>
+ <a href=\"javascript:view($id,$feed_id);\">".$line["updated"]."</a></td>";
print "<td class='headlineTitle'>$content_link</td>";
print "</tr>";