hello hall,
first thx for this cool component and sorry for my bad english.
i ave edited the code for make the user profile link sef, in this moment is not traslate.
in file comment.class.php find:
function profileLink($s, $id)
{
global $mosConfig_live_site;
return $id ? "<a href='$mosConfig_live_site/index.php?option=com_comprofiler&task=userProfile&user=$id'>$s</a>" : $s;
}
and replace with:
function profileLink($s, $id)
{
global $mosConfig_live_site;
if($id !=''){
$link=sefRelToAbs("index.php?option=com_comprofiler&task=userProfile&user=$id");
return "<a href='$link'>$s</a>";
}else{
return $s;
}
}
I hope it is useful to somebody,
tested in my server, joomla 1.0X