In pop_moderate.asp
An error occurs if the query string contains ?REPLY_ID=X
To fix this,
Change line 56 from
ReplyID = clng("0" & Request("REPLY_ID"))
to
If Request("REPLY_ID")="X" then
ReplyID = "X"
else
ReplyID = clng("0" & Request("REPLY_ID"))
end if
In moderate.asp
The "appove all topics for a forum" only approves 1 topic
To fix this,
Change line 447 from
ModString = "CAT_ID=" & Forum_Cat_ID & "&FORUM_ID=" & Forum_ID & "&TOPIC_ID=" & Topic_ID & "&REPLY_ID=X"
to
ModString = "CAT_ID=" & Forum_Cat_ID & "&FORUM_ID=" & Forum_ID