Hello Jeff007,
There are no database changes needed, just 5 lines in 4 files to alter. The numbers in red need to be changed to the number of characters you want the subject of the topic to be. I don't know why some are 50 and some are 41 (perhaps borg forgot to get them all in sync) but change them all to the same desired figure (otherwise you'll end up clipping a longer subject short when using the admin pop-up feature).
edit_post.asp - line 139
strSubject = Trim(Mid(Request.Form("subject"), 1, 50)) |
new_post.asp - line 158
strSubject = Trim(Mid(Request.Form("subject"), 1, 50)) |
pop_up_topic_admin.asp - line 125
strSubject = Trim(Mid(Request.Form("subject"), 1, 41)) |
pop_up_topic_admin.asp - line 311
<td><input type="text" name="subject" size="30" maxlength="41" value="<% = strSubject %>" /></td> |
includes/message_form_inc.asp - line 162
<input type="text" name="subject" id="subject" size="30" maxlength="50" |
Jim