2
It is not in the template, it is in the file
modules/jobs/blocks/jobs.php
look for the following lines:
if ( !XOOPS_USE_MULTIBYTES ) {
if (strlen($title) >= 14) {
$title = substr($title,0,18)."...";
change the number 14 to a higher number.
That should do it.
John