MyBB Community Forums

Full Version: How to increase the character of Thread title?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
it looks like mybb does not allow more than 85 character for thread title. is there anyway to increase the limit?

thanks in advanced
open inc/datahandlers/post.php

search line 226
if($subject_length > 85)

change the value, but note that the database field is set to a maximum of 120 characters.
If you want to go even higher, you have to change that in the database too

Make a note of the core change so that you can change it again if this file is overwritten by the update
Did it work?