4
You will have to look into class/category.php line 180:
function getNicePath($cid, $root_filename = "index.php", $item_filename = "viewcat.php?op=") {
include_once XOOPS_ROOT_PATH . '/class/xoopstree.php';
$mytree = new XoopsTree($this->table, $this->keyName, "pid");
$pathstring = $mytree->getNicePathFromId($cid, $this->identifierName, $item_filename);
/**
* Replacing the " with ">" and deleteing the last ">" at the end
*/
$pathstring = trim($pathstring);
$pathstring = str_replace(':', '>', $pathstring);
/*$pathstring = substr($pathstring, 0, strlen($pathstring) - 13);*/
return $pathstring;
}
Try to comment out this line to see what happens.
EDIT: Sorry, did not notice your previous post.