Open the db (I think you've the Access Version Board), go to the table tblTopic and increase the size of Subject Field in the Structure view of the table.
Save and quit.
Open and edit pages
post_message.asp
About line 149
strSubject = Trim(Mid(Request.Form("subject"), 1, 41)) |
Insert the new size (41).
Attention: the size must be smaller about 20 chr than the db field size.
includes/RTE_message_form_inc.asp
includes/message_form_inc.asp
<input type="text" name="subject" size="30" maxlength="41" ...> |
Inser the same size in maxlenght attribute that you've inserted in the code line above.
I think it's all you've to change.
Edited by weppos