Override with plugin OR hack qa-include/qa-util-string.php::qa_shorten_string_line()
Override example:
http://www.question2answer.org/plugins.php
http://www.question2answer.org/plugins-tutorial.php
http://www.question2answer.org/overrides.php
function qa_shorten_string_line($string, $length, $suffix=true) {
$string = qa_shorten_string_line_base($string, $length);
if (!$suffix) {
$delimiter = ' ... ';
$pos = strpos($string, $delimiter);
if ($pos !== false)
$string = substr($string, 0, $pos+strlen($delimiter));
}
return $string;
}
Hack example: (around line 530)
//$string=$prefix.' ... '.$suffix;
$string=$prefix.' ... ';
Restriction:
Because I do not test this code, it may need correction. And, as for the simple change mentioned above, length option of "Mouseover layer" plugin may not be handled definitely.