/', '', $youarehere);
//replace home
$youarehere = preg_replace('/.*?home.*?span>/', '
'.tpl_getlang("breadcrumbs_docs").'', $youarehere);
//replace current page
$matches = array();
preg_match_all('/
.*?<\/bdi>/', $youarehere, $matches);
$last = end($matches[0]);
if (false === $last) {
$youarehere .= '» '.tpl_pagetitle(null, true).'';
} else {
$youarehere = str_replace($last, ''.tpl_pagetitle(null, true).'', $youarehere);
}
} else if ("showtag" == $ACT) {
$youarehere = ''.tpl_getlang("breadcrumbs_docs").'» TAG: '.hsc(str_replace('_', ' ', $INPUT->str('tag'))).'';
} else if ("admin" == $ACT) {
$youarehere = ''.tpl_getlang("breadcrumbs_admin").'» '.tpl_pagetitle(null, true).'';
} else {
// Set default breadcrums
$youarehere = ''.tpl_getlang("breadcrumbs_docs").'» '.tpl_pagetitle(null, true).'';
}
echo $youarehere;
?>