Replace the entire section in register.asp after
'********************************************
'*** Check and setup page for admin mode ***
'********************************************
with:
'If the admin mode is enabled see if the user is an admin
If blnAdminMode AND blnAdmin = False Then
Set rsCommon = Nothing
adoCon.Close
Set adoCon = Nothing
Response.Redirect("insufficient_permission.asp?FID=" & intForumID)
End If
Now moderators can not view or edit member profiles anymore. You may also want to remove the 'edit profile' button from the member popup profiles by changing the (I guess that it looks that way)
If blnAdmin OR blnModerator then.....display 'edit profile button'
to:
If blnAdmin then.....display 'edit profile button'