Hi all,
when i download Web Wiz Forum v7 beta 3, there was error in file: (forum_configure.asp)
in line 304 this statement:
<input type="radio" value="False" <% If blnActiveUsers = False Then Response.Write "checked" %> name="activeUsers"></td>
the right is:
<input type="radio" name="activeUsers" value="False" <% If blnActiveUsers = False Then Response.Write "checked" %>></td>
***************************************
and there id another error in line (312):
<input type="radio" value="False" <% If blnActiveUsers = False Then Response.Write "checked" %>></td>
the right code is:
<input type="radio" name="showMod" value="False" <% If blnActiveUsers = False Then Response.Write "checked" %>></td>