11
Skythe: usually this kind of thing is pretty simple in XOOPS, this is a sad exception but I believe the new version of News will make it much easier to tack problems like this.
Anyway, here's what you want:
in /news/class/class.newsstory.php we have
... which seems to create the
topic link,
in /news/index.php
... which concatenates the
topic link with the story title + HTML for link.
I guess that you could replace the above lines in /news/index.php with
$story['title'] = $sarray[$i]->title();
, but I'd wait for someone with a better grip of PHP to avoid silly type errors. Or you can just try it on a test server :)
In article.php there's
$story['title'] = $article->textlink()." : ".$article->title();
, which should also be hacked if you need to keep the new format all around (title() seems to be a core function).