From 071ded90b0b963dc6664be05a076a3d5251083db Mon Sep 17 00:00:00 2001 From: dave Date: Fri, 23 Nov 2007 20:55:29 +0000 Subject: [PATCH] - Remove "Home >>" from the top nav bar, and simplify the logic --- common.inc.php | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/common.inc.php b/common.inc.php index 3f1e64e..0a95375 100644 --- a/common.inc.php +++ b/common.inc.php @@ -571,15 +571,11 @@ if(count($config['languages'])>1) 'index.php'), $nav); echo "
You are here: "; foreach($nav as $t=>$l) { - if($first_item == false) echo " >> "; - echo "".i18n($t).''; - $first_item = false; + echo "".i18n($t).' >> '; } - echo " >> $title"; + echo $title; echo '
'; } ?>