From: hickert Date: Thu, 11 Mar 2010 10:02:34 +0000 (+0000) Subject: Updated navigator X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b80b757ac297f1fe5d819917fec6852e940f299a;p=gosa.git Updated navigator git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@16446 594d385d-05f5-0310-b6e9-bd551577e9d8 --- 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); } }