
02-22-2005, 05:15 PM
|
 |
|
|
Join Date: Apr 2004
Location: New Zealand
Posts: 2,608
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Michael Morris
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:
|
Good call, both of you.
*updates hack*
Now it will affect users with under 50 posts only.
|