Print Page | Close Window

Topic Title Lenght?

Printed From: Web Wiz Forums
Category: Web Wiz Web App Support Forums
Forum Name: Web Wiz Forums Modifications
Forum Description: Mod's and Add-on's for Web Wiz Forums.
URL: https://forums.webwiz.net/forum_posts.asp?TID=23730
Printed Date: 30 March 2026 at 4:18am
Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com


Topic: Topic Title Lenght?
Posted By: jeff007
Subject: Topic Title Lenght?
Date Posted: 12 July 2007 at 9:00am
How can I change lenght of Topic title. It's to short now, so when someone puts longer title it's cut off.

I know that I must change database, but where else?



Replies:
Posted By: shovel
Date Posted: 15 July 2007 at 5:02pm
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



Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.08 - https://www.webwizforums.com
Copyright ©2001-2026 Web Wiz Ltd. - https://www.webwiz.net