summaryrefslogtreecommitdiff
path: root/inc/template.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/template.php')
-rw-r--r--inc/template.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/template.php b/inc/template.php
index 8f8c6f9dc..ab135e95f 100644
--- a/inc/template.php
+++ b/inc/template.php
@@ -273,9 +273,9 @@ function tpl_breadcrumbs(){
$crumbs = breadcrumbs(); //setup crumb trace
print $lang['breadcrumb'].':';
- foreach ($crumbs as $crumb){
+ foreach ($crumbs as $id => $name){
print ' » ';
- tpl_link(wl($crumb),noNS($crumb),'class="breadcrumbs" title="'.$crumb.'"');
+ tpl_link(wl($id),$name,'class="breadcrumbs" title="'.$id.'"');
}
}