Quote:
Originally Posted by assassingod
It's been a while since i've hacked vB2, but try this, open memberlist.php and find:
PHP Code:
if (!$permissions[canview] or !$permissions[canviewmembers]) {
show_nopermission();
}
Below add:
PHP Code:
if($bbuserinfo['usergroupid'] == 6) {
Find:
PHP Code:
} #end if ($action=="search")
below add:
PHP Code:
}
else
{
show_nopermission();
}
Untested, but should work
|
i've been trying to do this very thing in vbulletin 3.0.0. would anybody now how this code would have to be modified to get it to work in vb3?