Line 531, "first = 0", in admin_config_groupcats.asp should be moved outside of the For Next statement.
first = 0
for iGroup = 0 to recGroupCount
if allGroupData(0, iGroup) <> 2 then
first = 0
if first = 0 then
Response.Write " <option value="""">----------------------------</option>" & vbNewLine
first = 1
end if
Response.Write " <option value=""" & allGroupData(0, iGroup) & """" & chkSelect(cLng(group),cLng(allGroupData(0, iGroup))) & ">" & chkString(allGroupData(1, iGroup),"display") & "</option>" & vbNewLine
end if
next
<