cmpenney
Starting Member
USA
5 Posts |
Posted - 10 January 2002 : 17:07:10
|
In the chkForumModerator function of the inc_functions.asp file the wrong prefix varible is used. The Table prefix is used instead of the member prefix.
Current Line Reads: strSql = strSql & " FROM " & strTablePrefix & "MODERATOR mo, " & strTablePrefix & "MEMBERS me "
should read: strSql = strSql & " FROM " & strTablePrefix & "MODERATOR mo, " & strMemberTablePrefix & "MEMBERS me "
this causes problem when the forum uses a different Forum and member prefix.
|
|