From 1ed884b95561d43befef0babf60baea23acbbf90 Mon Sep 17 00:00:00 2001 From: hickert Date: Thu, 11 Mar 2010 08:46:19 +0000 Subject: [PATCH] Added pathNaviator git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@16405 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 fcbd1752f..53f96b3b8 100644 --- a/gosa-core/include/class_pathNavigator.inc +++ b/gosa-core/include/class_pathNavigator.inc @@ -25,7 +25,11 @@ class pathNavigator static function getCurrentPath() { - return(session::get('pathNavigator::position')); + $path = session::get('pathNavigator::position'); + if(empty($path)){ + $path = "
  • Welcome to GOsa
  • "; + } + return($path); } static function clear() -- 2.30.2