fix pref/feeds display when categories are disabled
This commit is contained in:
parent
293fa9424c
commit
6e69e9c25d
|
@ -1833,7 +1833,13 @@
|
||||||
|
|
||||||
if (!get_pref($link, 'ENABLE_FEED_CATS')) {
|
if (!get_pref($link, 'ENABLE_FEED_CATS')) {
|
||||||
print "<tr class=\"title\">
|
print "<tr class=\"title\">
|
||||||
<td width='5%' align='center'> </td>
|
<td width='5%' align='center'> </td>";
|
||||||
|
|
||||||
|
if (get_pref($link, 'ENABLE_FEED_ICONS')) {
|
||||||
|
print "<td width='3%'> </td>";
|
||||||
|
}
|
||||||
|
|
||||||
|
print "
|
||||||
<td width='40%'><a href=\"javascript:updateFeedList('title')\">Title</a></td>
|
<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='45%'><a href=\"javascript:updateFeedList('feed_url')\">Feed</a></td>
|
||||||
<td width='15%' align='right'><a href=\"javascript:updateFeedList('last_updated')\">Updated</a></td>";
|
<td width='15%' align='right'><a href=\"javascript:updateFeedList('last_updated')\">Updated</a></td>";
|
||||||
|
|
Loading…
Reference in New Issue