sorry about this i forgot to unhtmlspecialchars the title.
within index.php and forumdisplay.php look for the follow lines which you added.
PHP Code:
if (strlen($forum['lasttitle']) > 30) {
$forum['lasttitle'] = substr($forum['lasttitle'], 0, 28);
$forum['lasttitle'] .= '..';
}
above that add the following
PHP Code:
$forum['lasttitle']=unhtmlspecialchars($forum['lasttitle']);
this should solve the problem with the characters not being converted.
Also the decision on length is made by the top code a quick explanation is, if the length is over 30, remove everything after 28 characters and add two dots to the end.
Hope this helps, instruction file now updated.