1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 20:45:55 +00:00

early title work

This commit is contained in:
Andrew Dolgov
2005-08-22 06:58:37 +01:00
parent 0e091d38cf
commit 76798ff3f2
3 changed files with 39 additions and 14 deletions

View File

@@ -28,6 +28,8 @@
$lnum = 0;
$total_unread = 0;
while ($line = pg_fetch_assoc($result)) {
$feed = $line["title"];
@@ -40,6 +42,8 @@
if ($unread > 0) $class .= "Unread";
$total_unread += $unread;
print "<tr class=\"$class\" id=\"FEEDR-$feed_id\">";
$feed = "<a href=\"javascript:viewfeed($feed_id, 0);\">$feed</a>";
@@ -58,6 +62,8 @@
print "</table>";
print "<div class=\"invisible\" id=\"FEEDTU\">$total_unread</div>";
}
if ($op == "view") {