MyBB Community Forums

Full Version: Last Post longer characters.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Immortal Technique - Live...

Is it possible to add more characters before it get's cut off on the last post on forum index?
From line 212 of ./inc/functions_forumlist.php:

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

I believe you need to change both instances of the 25 to whatever you want the new limit to be.
Cheers, thanks alot Smile