In post.asp, around line# 269, you will need to avoid the editing of forum properties by that admin, for the forum you want her not to access. So, where now you have
if strRqMethod = "EditForum" then
if (mLev = 4) or (chkForumModerator(strRqForumId, strDBNTUserName) = "1") then
'## Do Nothing
else
Go_Result "Only moderators and administrators can edit forums"
end if
end if
You need to add code to avoid her editing the properties for the forum in question
if strRqMethod = "EditForum" then
if (mLev = 4) or (chkForumModerator(strRqForumId, strDBNTUserName) = "1") then
if (MemberID=HerMemberID) and (strRqForumId=DesiredForumID) then
Go_Result "Sorry, you cannot edit this forum properties"
end if
'## Do Nothing
else
Go_Result "Only moderators and administrators can edit forums"
end if
end if
She will still see the icon that allows her to edit the forum properties, but she won't be able to edit them. The icons could be hidden for that forum, but it would give a lotta work in several files.
Test this and see if it works.