i re-installed it and moded it a little
i left some of it the same and only changed it like this
so co-admins could not add or move people to or from the Administrators usergroup
in admin2/user
find
PHP Code:
// ###################### Start do update #######################
if ($HTTP_POST_VARS['action']=="doupdate") {
add under
PHP Code:
if (($userid==1) and ($bbuserinfo[userid]!=1)) {
echo "<p>You cannot update this Admin.</p>";
cpfooter();
exit;
}
if (($usergroupid==6) and ($bbusergroupinfo[usergroupid]!=6)) {
echo "<p>You cannot make this person Admin.</p>";
cpfooter();
exit;
}
find
PHP Code:
// ###################### Start Kill #######################
if ($HTTP_POST_VARS['action']=="kill") {
and add under
PHP Code:
if ($userid==1) {
echo "<p>You cannot delete this Admin.</p>";
cpfooter();
exit;
}
if ($usergroupid==6) {
echo "<p>You cannot delete this Admin.</p>";
cpfooter();
exit;
}{
the rest i left the same