open memberlist.php
find:
PHP Code:
if (!$enablememberlist) {
eval("standarderror(\"".gettemplate("error_nomemberlist")."\");");
exit;
}
replace it with:
PHP Code:
define( "MEMBERLISTVIEW", "5,6,7" );
$mloverride = explode( ",", MEMBERLISTVIEW );
if( !in_array( "$bbuserinfo[usergroupid]", $mloverride ) AND !$enablememberlist )
{
eval( "standarderror( \"" . gettemplate( 'error_nomemberlist' ) . "\" );" );
exit;
}
if you have other groups that you want to add to your list that can view the memberlist then just seperate each usergroupid witha comma inside of the define( )
regards,
g-force2k2