From 10b37454f833544a9553f9b7f6d6001bcbfe5900 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Fri, 27 Oct 2017 16:11:52 +0200 Subject: [PATCH] show application title instead of (directory-)name --- setup/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/index.php b/setup/index.php index 695f89be78..33ceb52cbd 100644 --- a/setup/index.php +++ b/setup/index.php @@ -485,7 +485,7 @@ switch($GLOBALS['egw_info']['setup']['stage']['db']) { if ($data['currentver'] && $data['version'] && $data['version'] != $data['currentver']) { - $to_upgrade[] = $app; + $to_upgrade[] = lang(!empty($data['title']) ? $data['title'] : $app); $setup_tpl->set_var('apps_status_img',$incomplete); } } @@ -494,7 +494,7 @@ switch($GLOBALS['egw_info']['setup']['stage']['db']) { if (!isset($setup_info[$app]) || empty($setup_info[$app]['currentver'])) { - $to_install[] = $app; + $to_install[] = lang($app); $setup_tpl->set_var('apps_status_img',$incomplete); } }