on line #127
find the following:
fString = ReplaceURLs(fString)
fString = ReplaceImageTags(fString)
fString = ReplaceCodeTags(fString)
change it to this:
if strAllowForumCode = "1" then
fString = ReplaceURLs(fString)
fString = ReplaceCodeTags(fString)
if strIMGInPosts = "1" then
fString = ReplaceImageTags(fString)
end if
end if