fix pref/feeds display when categories are disabled

This commit is contained in:
Andrew Dolgov 2006-06-08 06:13:51 +01:00
parent 293fa9424c
commit 6e69e9c25d
1 changed files with 7 additions and 1 deletions

View File

@ -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>";