Hi,
i use ssi_boardNews in Joomla and the problem is that the Bridge don´t use SEF URLs at the comment links, check it at www.rapz.de
what do i have to change to get it work with SEF URLs?
you'll probably have to re-write ssi_boardnews...
yea that´s right, but how?
You could try something like this ..
ob_start();
//include page here
//this might even work if just ssi_boardnews() is called here.
$contents = ob_get_contents();
ob_end_clean();
$contents = fixssiurl($contents);
function fixssiurl($contents)
{
This function would contain the rewrite functions of Orstios smf.php from his bridge.
Please check with him that you are allowed to do this
return $contents;
}