diff options
author | Andreas Gohr <andi@splitbrain.org> | 2007-08-13 21:09:12 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2007-08-13 21:09:12 +0200 |
commit | 1b6f3a44911fa2894c9318857e36c705abf0b5cb (patch) | |
tree | 60a9be0ef792a713bdb75aaac045a6b199d48398 | |
parent | 4a11902708296cb762ced641066475b84f0b01c1 (diff) | |
download | rpg-1b6f3a44911fa2894c9318857e36c705abf0b5cb.tar.gz rpg-1b6f3a44911fa2894c9318857e36c705abf0b5cb.tar.bz2 |
span added to breadcrumbs label
darcs-hash:20070813190912-7ad00-b2677372876f395da890ba5a86050343bea249f2.gz
-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 1d812cab3..a02493994 100644 --- a/inc/template.php +++ b/inc/template.php @@ -745,7 +745,7 @@ function tpl_breadcrumbs($sep='»'){ } //render crumbs, highlight the last one - print $lang['breadcrumb'].':'; + print '<span class="bchead">'.$lang['breadcrumb'].':</span>'; $last = count($crumbs); $i = 0; foreach ($crumbs as $id => $name){ @@ -781,7 +781,7 @@ function tpl_youarehere($sep=' » '){ $parts = explode(':', $ID); $count = count($parts); - echo $lang['youarehere'].': '; + echo '<span class="bchead">'.$lang['youarehere'].': </span>'; // always print the startpage $title = p_get_first_heading($conf['start']); |