Hi. In robot_functions.php is the function phpdigCleanHtml.
In that function replace:
PHP Code:
if ( eregi("<title *>([^<>]*)</title *>",$text,$regs) ) {
$title = $regs[1];
}
else {
$title = "";
}
with the following:
PHP Code:
if ( eregi("<title *>([^<>]*)</title *>",$text,$regs) ) {
$title = $regs[1];
if (strlen($title) > X) { // replace X with max length before truncating
$title = substr($title,0,Y) . "..."; // replace Y with desired length
}
}
else {
$title = "";
}