MyBB Community Forums

Full Version: Latest Post issue
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
so i have the leatestposts by DanielM i want to limit the title to 25 on sidebar and so it puts after .......
$thread['subject'] = "You see, this is a very very long subject";

if( mb_strlen( $thread['subject'] ) > 25 )
{
	$thread['subject'] = mb_substr( $thread['subject'], 0, 35 ) . "...";
}

echo htmlspecialchars( $thread['subject'] );

Is what you're looking for, jordan.