Smoothie, in search.php, try adding this:
PHP Code:
//start characters length hack
$maxchars='30'; // thread title length
$searchresult[threadtitle]=unhtmlspecialchars($searchresult[threadtitle]);
if (strlen($searchresult[threadtitle]) > $maxchars) {
$searchresult[threadtitle] = substr($searchresult[threadtitle], 0, $maxchars-2) . '...';
}
//end characters length hack
AFTER this:
PHP Code:
if ($wordwrap!=0) {
$searchresult[threadtitle]=dowordwrap($searchresult[threadtitle]);
}
and let me know if it works.