|
kimkr
Starting Member
Denmark
36 Posts |
Posted - 03 March 2002 : 07:10:21
|
Hi, I just found one more bug (not crusial - if you don't use different table prefixes for the member table and the other tables)
in inc_functions.asp about line 1108 the member table is used, without the member table prefix:
function chkForumModerator(fForum_ID, fMember_Name) '## Forum_SQL strSql = "SELECT mo.FORUM_ID " strSql = strSql & " FROM " & strTablePrefix & "MODERATOR mo, " & strTablePrefix & "MEMBERS me " strSql = strSql & " WHERE mo.FORUM_ID = " & fForum_ID & " " strSql = strSql & " AND mo.MEMBER_ID = me.MEMBER_ID "
Change this to:
function chkForumModerator(fForum_ID, fMember_Name) '## Forum_SQL strSql = "SELECT mo.FORUM_ID " strSql = strSql & " FROM " & strTablePrefix & "MODERATOR mo, " & strMemberTablePrefix & "MEMBERS me " strSql = strSql & " WHERE mo.FORUM_ID = " & fForum_ID & " " strSql = strSql & " AND mo.MEMBER_ID = me.MEMBER_ID "
Edited by - bozden on 23 April 2002 13:51:06< |
|