From b80b757ac297f1fe5d819917fec6852e940f299a Mon Sep 17 00:00:00 2001 From: hickert Date: Thu, 11 Mar 2010 10:02:34 +0000 Subject: [PATCH] Updated navigator git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@16446 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/include/class_pathNavigator.inc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gosa-core/include/class_pathNavigator.inc b/gosa-core/include/class_pathNavigator.inc index 44eb07590..ba263dd18 100644 --- a/gosa-core/include/class_pathNavigator.inc +++ b/gosa-core/include/class_pathNavigator.inc @@ -20,7 +20,11 @@ class pathNavigator if(!empty($str)){ $cur = session::get('pathNavigator::position'); - $cur.= "
  • {$str}
  • "; + if(empty($cur)){ + $cur.= "
  • {$str}
  • "; + }else{ + $cur.= "
  • {$str}
  • "; + } session::set('pathNavigator::position', $cur); } } -- 2.30.2