Hi again,
I've tested it and you are right the link in backend is wrong.
To fix this go to administrator/components/com_comment/plugin/com_content/josc_com_content.class.php
public function linkToContent
you will see this
if ($appl->scope == 'mod_comments' || $appl->scope == 'com_comment') {
$mod_data = $this->getCatSecAliasMod($contentId);
$this->_route_slug = '';
$this->_route_catid = $mod_data->catid;
$this->_route_sectionid = $mod_data->sectionid;
$contentId = $contentId . ':' . $mod_data->alias;
}
change it to this:
$josctask = JOSC_utils::decodeData('josctask');
if ($appl->scope == 'mod_comments' || $josctask == 'ajax_search') {
$mod_data = $this->getCatSecAliasMod($contentId);
$this->_route_slug = '';
$this->_route_catid = $mod_data->catid;
$this->_route_sectionid = $mod_data->sectionid;
$contentId = $contentId . ':' . $mod_data->alias;
}
Please report if all links are looking fine.
Thank you!