In fact I think it has already been done woohoo!
http://rpgnet.clanmckeen.com/demo/viewt ... =4457#4457You need to make sure that the total number of admins and board founders are represented in the ACP > Security > Special > Number of admins box. Please note, Junior admins do not apply to this number, they are collated in the number of Moderators.
the above link would suggest the code changes are as follows
change the 2 files blocks/blocks_imp_online_users.php and profilcp/functions_profile.php
FIND
- Code: Select all
if ( ($userdata['user_level'] == ADMIN) && ($userdata['user_id'] == 2) )
REPLACE WITH
- Code: Select all
if ( ($userdata['user_level'] == ADMIN) && in_array($userdata['user_id'], array( 2, 3, 4) ) )
Where 2,3 and 4 are the user ids of the board founders. You can have any number of founders as long as their ids are seperated with a comma.
One final word of warning, Board founders have significant power over any other user, and have access to more functions and details in the board setup. Make sure you are careful who you choose to be one. The same needs to be said for making ordinary admins. It is a role that carries much responsibility.
A