From: hickert Date: Thu, 11 Mar 2010 08:46:19 +0000 (+0000) Subject: Added pathNaviator X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=1ed884b95561d43befef0babf60baea23acbbf90;p=gosa.git Added pathNaviator git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@16405 594d385d-05f5-0310-b6e9-bd551577e9d8 --- 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()