PDA

View Full Version : member list viewable to mods and admin only


Anjie
08-09-2003, 08:27 PM
Is there a hack where the member list is viewable to only mods, super mods and admin? I have the member list turned off at my forum but would like mods to be able to see the member list. Any suggestions?

g-force2k2
08-09-2003, 10:22 PM
open memberlist.php

find:

if (!$enablememberlist) {
eval("standarderror(\"".gettemplate("error_nomemberlist")."\");");
exit;
}

replace it with:

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

Anjie
08-10-2003, 01:04 AM
thanks, I'll give it a try. :)