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 787730173..c879ecff8 100644 --- a/inc/template.php +++ b/inc/template.php @@ -358,9 +358,9 @@ function tpl_breadcrumbs(){ foreach ($crumbs as $id => $name){ $i++; print ' » '; - if ($i == $last) print '<strong>'; + if ($i == $last) print '<span class="curid">'; tpl_link(wl($id),$name,'class="breadcrumbs" title="'.$id.'"'); - if ($i == $last) print '</strong>'; + if ($i == $last) print '</span>'; } } |