RSS feed hack
I'm not sure if this is 100% fool-proof, but it's what seems to work so far ...
I changed the code in the plugin to add
Code:
&& !$vbulletin->GPC['varname'] && !$vbulletin->GPC['cronid']
so, the original looks like this
Code:
if (($vbulletin->userinfo[posts] < 15) and etc, etc, etc
and the new code looks like this
Code:
if (($vbulletin->userinfo[posts] < 15 && !$vbulletin->GPC['varname'] && !$vbulletin->GPC['cronid']) and etc, etc, etc
... this variables are used by manually running a cron and by the cron running on it's own (which is what runs the RSS feeds). It's the best I can come up with without spending a lot of time on it.
.... i've added an attachment with this change ... no idea if it's perfect or not ... it's been successful so far.