
03-20-2005, 03:27 PM
|
 |
|
|
Join Date: Oct 2001
Location: PA
Posts: 4,438
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by caislander
Amy,
I hate to ask this after all the work it looks like you went throught to get it right but I want to remove the spider from showing in the member list, is that possible? I just want the count in the "currently Active User" line, then if they want to know what bot(s) let them run whois online..
BTW, this is a great hack and works fine, in my case it just provide more info than is needed..
Thanks
|
Just remove this:
Code:
while ($spidername = current($spiderlist))
{
if ($spidername > 1) {
$loggedin['musername'] = trim(key($spiderlist)) . "(" . $spidername.")";
}
else
{
$loggedin['musername'] = trim(key($spiderlist));
}
$loggedin['userid'] = 0;
$loggedin['musername'] = trim($loggedin['musername']);
eval('$activeusers .= ",' . fetch_template('forumhome_loggedinuser') . '";');
next($spiderlist);
}
|