I've not had a chance to test this, but I think this will give you what you want:
Change in inc_func_common.asp:
On (or about) Line 114 change:function FormatStr(fString)
to:function FormatStr(fString, bAllowImages)
On (or about) Line 126 change:if strIMGInPosts = "1" then
to:if strIMGInPosts = "1" And bAllowImages then
You will need to find all instances where FormatStr is called and add either True or False depending on if you want images or not.
For instance, in topic.asp around line 663 you will need to change
if qsSearchTerms <> "" then
Response.Write SearchHiLite(formatStr(Reply_Content))
else
Response.Write formatStr(Reply_Content)
end if
to
if qsSearchTerms <> "" then
If mLev >= 3 Then
Response.Write SearchHiLite(formatStr(Reply_Content,True))
Else
Response.Write SearchHiLite(formatStr(Reply_Content,False))
End If
else
If mLev >= 3 Then
Response.Write formatStr(Reply_Content,True)
Else
Response.Write formatStr(Reply_Content,False)
End If
end if
Let me know how it goes. (or if I goofed )<