Searching in my server error log I noticed that there is a bug in the default.asp code.
In some lines you can find this:
Response.Write vbCrLf & "<tr><td bgcolor=""" & strTableColour & """ background="" & strTableBgImage & "" colspan=""5"" class=""text"">" & strTxtNoForums & "</td></tr>"
But it has to be:
Response.Write vbCrLf & "<tr><td bgcolor=""" & strTableColour & """ background=""" & strTableBgImage & """ colspan=""5"" class=""text"">" & strTxtNoForums & "</td></tr>"
The change is in bold type.
