Can this be done in the modcp/index.php?
Here is what looks to be the code...
what can I delete to remove those options from a supermoderator?
PHP Code:
// *************************************************
$canmass = false;
if (can_moderate(0, 'canmassmove'))
{
$canmass = true;
construct_nav_option($vbphrase['move'], 'thread.php?do=move');
}
if (can_moderate(0, 'canmassprune'))
{
$canmass = true;
construct_nav_option($vbphrase['prune'], 'thread.php?do=prune');
}
if ($canmass)
{
construct_nav_group($vbphrase['thread']);
construct_nav_spacer();
}
($hook = vBulletinHook::fetch_hook('mod_index_navigation')) ? eval($hook) : false;
print_nav_panel();
echo "</div>\n";
// *************************************************
--------------- Added [DATE]1194841226[/DATE] at [TIME]1194841226[/TIME] ---------------
Update:
This old mod from 2005 will still work for those who want to remove prune permissions from super moderators.
https://vborg.vbsupport.ru/showthread.php?t=59697