Log in

View Full Version : Restricting Supermods?


Corriewf
01-27-2005, 06:22 PM
I have two supermods that I would like to restrict from being able to prune threads.How can I do this? Also does anyone know of a cpanel mod that would give me better access and control of the moderate log?

noppid
01-27-2005, 07:58 PM
assuming they don't have ACP access to do so, you can just lock the tread management file.

In modcp/thread.php find...


print_cp_header($vbphrase['thread_manager']);


Add below...

// hack
if (1)
{
print_stop_message('no_permission');
exit;
}
// end hack


Works for us.

Corriewf
01-27-2005, 08:21 PM
Thank you.That is an awesome little mod that I bet alot of people would love to have.