summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-08-21 18:27:06 +0100
committerAndrew Dolgov <[email protected]>2005-08-21 18:27:06 +0100
commitc442fb6e28620d702a8dfdab6f42630f618b6b39 (patch)
treec60a24f42a5b4cf849a0569f1f0b3b1e8e96d5a3 /backend.php
parent857d6a80720fcc69e70d3674f1ea30c92c29c596 (diff)
basic functionality pass 8
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/backend.php b/backend.php
index 5386de0b3..76445e9c8 100644
--- a/backend.php
+++ b/backend.php
@@ -43,8 +43,10 @@
$feed = "<a href=\"javascript:viewfeed($feed_id, 0);\">$feed</a>";
print "<td id=\"FEEDN-$feed_id\">$feed</td>";
- print "<td id=\"FEEDU-$feed_id\">$unread</td>";
- print "<td id=\"FEEDT-$feed_id\">$total</td>";
+ print "<td>";
+ print "<span id=\"FEEDU-$feed_id\">$unread</span>&nbsp;/&nbsp;";
+ print "<span id=\"FEEDT-$feed_id\">$total</span>";
+ print "</td>";
print "</tr>";
++$lnum;