MyBB Community Forums

Full Version: Change maximum characters in "last post"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
It looks that the maximum amount of characters in de column "Last post" is set to 25. I would like to change it to 30 - 35.

I already changed the widht of the colums in the forumbith_depht1_cat.

I really don't know where I can find these settings voor de max characters. Does somebody know how to change it?

Thanks,

Ger (The Netherlands)
Open ./inc/functions_forumlist.php

Find and change to your needs
					if(my_strlen($lastpost_subject) > 25)
					{
						$lastpost_subject = my_substr($lastpost_subject, 0, 25)."...";
					}
(2009-05-29, 02:50 PM)LeX- Wrote: [ -> ]Open ./inc/functions_forumlist.php

Find and change to your needs
					if(my_strlen($lastpost_subject) > 25)
					{
						$lastpost_subject = my_substr($lastpost_subject, 0, 25)."...";
					}


Thanks Lex, this is what i'm looking for.

Ger