get('home')) {
$output .= ''.JText::_('K2_YOU_ARE_HERE').'';
$output .= ''.$params->get('home',JText::_('K2_HOME')).'';
if (count($path)) {
foreach ($path as $link) {
$output .= ''.$params->get('seperator','»').''.$link;
}
}
if($title){
$output .= ''.$params->get('seperator','»').''.$title;
}
} else {
if($title){
$output .= ''.JText::_('K2_YOU_ARE_HERE').'';
}
if (count($path)) {
foreach ($path as $link) {
$output .= $link.''.$params->get('seperator','»').'';
}
}
$output .= $title;
}
echo $output;
?>