If you want to remove the "admin" menu all together for Moderators... I *think* this should do the trick. (let me know).
In your ubbt.inc.php file, find this:
code:
// ------------------------------------------------------------------
// If they are an admin or moderator they get a link to the admin sec
if ( ($user['U_Status'] == "Administrator") || ($user['U_Status'] == "Moderator") ) {
$target = "target="_top"";
$adminlink = "<a href = "$phpurl/admin/login.php...shortened... | ";
}
Change to this:
code:
// ------------------------------------------------------------------
// If they are an admin or moderator they get a link to the admin sec
if ($user['U_Status'] == "Administrator") {
$target = "target="_top"";
$adminlink = "<a href = "$phpurl/admin/login.php...shortened... | ";
}
Hope that helps.
