I'm currently modifying topic.asp and I've found some HTML "bugs" you might want to remove. I've listed them below.
------------------------------------------
line 313:
<td align="right" colspan=2 width=100%>
should be:
<td align="right" colspan="2" width="100%">
-------------------------------------------
lines 379 and 527
<font color="<% =strForumFontColor %>" face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>"><b><% =ChkString(rsReplies("M_NAME"),"display") %></a>
</b></font>
should be:
<font color="<% =strForumFontColor %>" face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>"><b><% =ChkString(rsReplies("M_NAME"),"display") %></b></a>
</font>
-------------------------------------------
line 485:
<td valign="top"><font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>"><b>Topic is <% =maxpages %> Pages Long: </font></td>
should be:
<td valign="top"><font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>"><b>Topic is <% =maxpages %> Pages Long: </b></font></td>
-------------------------------------------
line 690, 712, 714, 718, 721 723
The border attribute appears 2 times in the img tag.
-------------------------------------------------
Installation Guide | Do's and Dont's | MODs
Edited by - OneWayMule on 27 March 2002 22:22:10