mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 01:13:25 +01:00
give admin access to all apps, to save us some support requests
This commit is contained in:
parent
9b29b3a712
commit
1d6a4ff344
@ -100,7 +100,15 @@
|
||||
|
||||
/* Group perms for the default group */
|
||||
$GLOBALS['phpgw_setup']->add_acl(array('addressbook','calendar','infolog','email','preferences'),'run',$defaultgroupid);
|
||||
$GLOBALS['phpgw_setup']->add_acl('admin','run',$admingroupid);
|
||||
|
||||
// give admin access to all apps, to save us some support requests
|
||||
$all_apps = array();
|
||||
$GLOBALS['phpgw_setup']->db->query('SELECT app_name FROM phpgw_applications WHERE app_enabled<3');
|
||||
while ($GLOBALS['phpgw_setup']->db->next_record())
|
||||
{
|
||||
$all_apps[] = $GLOBALS['phpgw_setup']->db->f('app_name');
|
||||
}
|
||||
$GLOBALS['phpgw_setup']->add_acl($all_apps,'run',$admingroupid);
|
||||
|
||||
function insert_default_prefs($accountid)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user