diff options
Diffstat (limited to 'inc/template.php')
-rw-r--r-- | inc/template.php | 4 |
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.'"'); } } |