summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-06-08 06:13:51 +0100
committerAndrew Dolgov <[email protected]>2006-06-08 06:13:51 +0100
commit6e69e9c25dd25b7c7e60060159fe78b996ec8732 (patch)
tree07e6210060060be0432e22a5bde103a70a7b1b2f
parent293fa9424c096a589cd99615c0d68f7d16a8a3d7 (diff)
fix pref/feeds display when categories are disabled
-rw-r--r--backend.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/backend.php b/backend.php
index dafb0b95b..6d0723c9f 100644
--- a/backend.php
+++ b/backend.php
@@ -1833,7 +1833,13 @@
if (!get_pref($link, 'ENABLE_FEED_CATS')) {
print "<tr class=\"title\">
- <td width='5%' align='center'>&nbsp;</td>
+ <td width='5%' align='center'>&nbsp;</td>";
+
+ if (get_pref($link, 'ENABLE_FEED_ICONS')) {
+ print "<td width='3%'>&nbsp;</td>";
+ }
+
+ print "
<td width='40%'><a href=\"javascript:updateFeedList('title')\">Title</a></td>
<td width='45%'><a href=\"javascript:updateFeedList('feed_url')\">Feed</a></td>
<td width='15%' align='right'><a href=\"javascript:updateFeedList('last_updated')\">Updated</a></td>";