Log in

View Full Version : strange problem with rss feed icon plugin


epicbear
06-09-2007, 04:57 PM
I'm having a strange problem. This all worked perfectly in the past.

The plugin is active and the code is a bit modified:


if ($vbulletin->options['externalrss'] and $foruminfo[forumid]!='20' and $foruminfo[forumid]!='33')
{
$show['rss'] = true;
}


The table in FORUMDISPLAY has been edited thusly:


<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center" style="border-bottom-width:0px">
<tr>
<td class="tcat" width="100%">$vbphrase[threads_in_forum]<span class="normal"> : $foruminfo[title]</span></td>
<td class="vbmenu_control" id="forumtools" nowrap="nowrap"><a href="$show[nojs_link]#goto_forumtools" rel="nofollow">$vbphrase[forum_tools]</a> <script type="text/javascript"> vbmenu_register("forumtools"); </script></td>
<if condition="$show['forumsearch']">
<td class="vbmenu_control" id="forumsearch" nowrap="nowrap"><a href="$show[nojs_link]#goto_forumsearch" rel="nofollow">$vbphrase[search_this_forum]</a> <script type="text/javascript"> vbmenu_register("forumsearch"); </script></td>
</if>
<if condition="$show['rss']">
<td class="tcat"><a href="external.php?type=rss2&forumids=$foruminfo[forumid]"><img class="inlineimg" src="$stylevar[imgdir_misc]/feed_icon.png" height="14" width="14" alt="Feed Icon" title="Subscribe to $foruminfo[title]'s RSS Feed" border="0"></a></td>
</if>
</tr>
</table>



Not only is the last cell with the icon not appearing, I can completely remove this whole table from FORUMDISPLY and the table still appears. So nothing I edit in FORUMDISPLAY will correct this problem because the pages are getting this table from SOMEWHERE ELSE.

But where?

Nevermind...I figured it out.