I would like to put a max character cap on $thread[title] for forumdisplay.php.
Here is my idea but it did not work.
PHP Code:
$maxthreadtitle = 45;
$title = $ar[$thread[threadid]][title];
$maxchars = $maxthreadtitle;
if (strlen($title)>$maxchars-1)
{
$spacepos = strpos($title." "," ",$maxchars);
if ($spacepos!=0)
{
$title = substr($title ,0,$spacepos)."...";
}
}