MyBB Community Forums

Full Version: How to change the length of lastpost_subject?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I increased the width of the "Last Post" column (see Elections 2008 Forum), and the actual thread titles in that column are now too short. They are abbreviated after only 25 characters. How can I increase this to a larger number?
Open ./inc/functions_forumlist.php

Find
					if(my_strlen($lastpost_subject) > 25)
					{
						$lastpost_subject = my_substr($lastpost_subject, 0, 25) . "...";
					}
Change to your needs.
Thank you! Smile
Thank you LeX-. I was also wondering!