Got it!
Find this code block (line 1002):
PHP Code:
else
{
// check for Admin who can see invisible users
if ($this->user['mgroup'] == 6)
{
$names .= ($a) ? ", " : "";
$names .= $span_pre."<a href='./member.php?$session[sessionurl]&u=".$this_user['id']."'>";
$names .= $this_user['prefix'].$this_user['name'].$this_user['suffix'];
$names .= "</a>*".$span_suf;
$a++;
}
}
and replace with:
PHP Code:
else
{
// check for Admin who can see invisible users
if ($this->user['mgroup'] == 6)
{
$names .= ($a) ? ", " : "";
$names .= $span_pre."<a href='./member.php?$session[sessionurl]&u=".$this_user['id']."'>";
$names .= $this_user['prefix'].$this_user['name'].$this_user['suffix'];
$names .= "</a>*".$span_suf;
$a++;
}
$anon_count++;
}
You need only one line ($anon_count++; ) nearly the end of the code block.
Greetz