2
Duh
I found it :),
Ive edited news_randomnews.php block.
foreach ( $stories as $story ) {
$news = array();
$title = $story->title();
if (strlen($title) > $options[2]) {
$title = xoops_substr($title,0,$options[2]+3);
}
$news['title'] = $title;
and removed
$title = xoops_substr($title,0,$options[2]+3);
instead added
$title = $story->title();