UBB.Dev
Posted By: mmnatas How do I change the message truncation? - 02/10/2001 1:35 AM
I've searched through the templates, cgi files, etc. for a couple hours now trying to figure out how to modify the way titles get truncated for display in ultimatebb and in daily_topics, but haven't had any luck. Any suggestions?
ubb_forum_summary

160:

if (length($last_subject) > 35) {
$last_subject = substr($last_subject, 0, 34);
$last_subject .= ' ...';
}
Posted By: mmnatas Re: How do I change the message truncation? - 02/10/2001 8:05 AM
Thanks
Posted By: mmnatas Re: How do I change the message truncation? - 02/10/2001 9:48 AM
It doesn't seem to affect the active topics however. frown
ubb_search or public_daily_topics should contain VERY similar code...
© UBB.Developers