From aac774b55e8f9f43dc088b0c07899d0ac0d53965 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Fri, 19 Dec 2003 02:23:17 +0000 Subject: [PATCH] fix to show the original 'About appname' again --- phpgwapi/templates/idots/navbar.inc.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/phpgwapi/templates/idots/navbar.inc.php b/phpgwapi/templates/idots/navbar.inc.php index 004a6d37e6..779150491e 100644 --- a/phpgwapi/templates/idots/navbar.inc.php +++ b/phpgwapi/templates/idots/navbar.inc.php @@ -197,7 +197,11 @@ $file['Preferences'] = $GLOBALS['phpgw_info']['navbar']['preferences']['url']; } $file += array( - 'About '.$appname=>$GLOBALS['phpgw_info']['navbar']['about']['url'], + array( + 'text' => lang('About %1',$GLOBALS['phpgw_info']['apps'][$GLOBALS['phpgw_info']['flags']['currentapp']]['title']), + 'no_lang' => True, + 'link' => $GLOBALS['phpgw_info']['navbar']['about']['url'] + ), 'Logout'=>$GLOBALS['phpgw_info']['navbar']['logout']['url'] );