Hi
The page admin/view_forums.asp has the incorrect code for the HTML table.
Line 177 has
Response.Write vbCrLf & "<td bgcolor=""#FFFFFF"" colspan=""4""><span class=""text"">There are no Forum's to display. <a href=""forum_details.asp?mode=new"">Click here to create a Forum</a></span></td>"
but it isnt bound by a "<tr> </tr>" pairing
PS.
A small mod Ive made to enable the preselection of the category when adding new forums is:
Response.Write vbCrLf & "<tr><td bgcolor=""#FFFFFF"" colspan=""4""><span class=""text"">There are no Forum's to display. <a href=""forum_details.asp?mode=new&CatID=" & intCatID & """>Click here to create a Forum</a></span></td></tr>"
plus adding to Line 135 of /admin/forum_details.asp
intCatID = cInt(Request("CatID"))