summaryrefslogtreecommitdiff
path: root/inc/template.php
diff options
context:
space:
mode:
authorandi <andi@splitbrain.org>2005-04-27 20:04:37 +0200
committerandi <andi@splitbrain.org>2005-04-27 20:04:37 +0200
commit92795d041e58469edddd6903fb1e8e26aeb239ff (patch)
treea6f2812e2d51a7160e50cf55091af90b7f5be85b /inc/template.php
parent40eb54bb0e6f4102d8b3e9af01c3bc93ac751cb2 (diff)
downloadrpg-92795d041e58469edddd6903fb1e8e26aeb239ff.tar.gz
rpg-92795d041e58469edddd6903fb1e8e26aeb239ff.tar.bz2
highlight patch adjustments
darcs-hash:20050427180437-9977f-5a3aa516a1522e342358d7829aad1163aaf97051.gz
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 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 ' &raquo; ';
- 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>';
}
}