From b612f5ad62fd3ec72808030797ea55bd54b3a833 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Fri, 27 Jun 2014 07:47:30 +0000 Subject: [PATCH] do not give run-rights by default to old apps --- setup/admin_account.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/admin_account.php b/setup/admin_account.php index 41d901dced..394c2a6459 100644 --- a/setup/admin_account.php +++ b/setup/admin_account.php @@ -141,7 +141,7 @@ else // not yet set for the default group or development only apps like (etemplate, jinn, tt's) if (!$_POST['admin_all_apps']) { - $apps = array_intersect(array('admin','bookmarks','emailadmin','mydms','news_admin','phpbrain','phpsysinfo','polls','phpfreechat','projectmanager','resources','sambaadmin','sitemgr','timesheet','tracker','wiki'),$apps); + $apps = array_intersect(array('admin','bookmarks','emailadmin','news_admin','phpbrain','phpsysinfo','phpfreechat','projectmanager','resources','sitemgr','timesheet','tracker','wiki'),$apps); } $GLOBALS['egw_setup']->add_acl($apps,'run',$admingroupid);