MyBB Community Forums

Full Version: Increase "Latest Post" Thread Title Text Limit
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
You know how on the main forum page you can see a preview of a thread's title under "Latest Post"? I think the preview limit is 25 characters... is there a way to increase it?
I think that's in the core files somewhere, there may be a plugin that changes it but I don't know of one.
./inc/functions_forumlist.php, line 214:

if(my_strlen($lastpost_subject) > 25)
{
	$lastpost_subject = my_substr($lastpost_subject, 0, 25)."...";
}

Change both instances of 25.
Thank YOU!!!!!!!
I was looking this for long time :-)

(2010-06-16, 04:56 PM)MattRogowski Wrote: [ -> ]./inc/functions_forumlist.php, line 214:

if(my_strlen($lastpost_subject) > 25)
{
	$lastpost_subject = my_substr($lastpost_subject, 0, 25)."...";
}

Change both instances of 25.
Nice little tip matt , thanks Big Grin