Quote:
Originally Posted by kall
Stoopid is as stoopid does. 
|
Ignore the little troll kall.
:clicks ignore:
Now, might I recommend the following. Your conditional references $bbuserinfo. That will only affect the viewing user - so spiders still see no links in posts regardless of the user. To pull up the post user data, use $post. You'll have to global it. Further, instead of using a set usergroup, I recommend using a post count threshhold of 50. I doubt many spammers will reach that threshold, while most of your regulars will. Hence
PHP Code:
global $post;
if ($post['posts'] < 50)
{
//put the no follow stuff in
}
else
{
//don't
}
:clicks install: