By default only admins can view the modmanagement.php page, if you want your supermoderators to be able to access the page.
In modmanagement.php search for:
PHP Code:
if (!($permissions['adminpermissions'] & CANCONTROLPANEL))
replace it with:
PHP Code:
if (!($permissions['adminpermissions'] & CANCONTROLPANEL) && !($permissions['adminpermissions'] & ISMODERATOR))
By default only admins can view the modmanagement.php page, if you want all moderators to be able to access the page.
In modmanagement.php search for:
PHP Code:
if (!($permissions['adminpermissions'] & CANCONTROLPANEL))
replace it with:
PHP Code:
if (!($permissions['adminpermissions'] & CANCONTROLPANEL) && !can_moderate())