Quote:
Originally Posted by Megareus Rex
Cool hack idea. But I have a couple questions.
I added my user id into the $superadmin variable, but it still gives me the no permission message. Is that supposed to happen?
|
if you'r the only super admin, you can use this code instead
Code:
// only super admin can add admin (and/or smod)
$cant_add_groups = array(5,6); // use comma to seperate usergroups
if (($bbuserinfo['userid'] != '1') AND in_array($user['usergroupid'], $cant_add_groups))
{
print_stop_message('cant_add_admin');
}
and I assumed your userid is
1 .