In method 'getRoute' of file 'libraries/cms/helper/route.php' there is this code:
if ($catid > 1)
{
$categories = JCategories::getInstance($name);
$category = $categories->get((int) $catid);
if ($category)
{
$needles['category'] = array_reverse($category->getPath());
$needles['categories'] = $needles['category'];
$link .= '&catid=' . $catid;
}
}
That code produces a fatal error when using tags with a component that has its own categories management (which means that JCategories can't be used).
In method 'getRoute' of file 'libraries/cms/helper/route.php' there is this code:
That code produces a fatal error when using tags with a component that has its own categories management (which means that JCategories can't be used).