From b9caa7f710490d0c65fcb573eefcc4a2911521b3 Mon Sep 17 00:00:00 2001 From: jengo Date: Thu, 22 Feb 2001 04:42:01 +0000 Subject: [PATCH] Fixed adding permissions to an account not adding in the proper level for run --- phpgwapi/inc/class.applications.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.applications.inc.php b/phpgwapi/inc/class.applications.inc.php index d030cdd467..d3def6d5ac 100755 --- a/phpgwapi/inc/class.applications.inc.php +++ b/phpgwapi/inc/class.applications.inc.php @@ -101,7 +101,7 @@ reset($this->data); while($app = each($this->data)) { if(!$this->is_system_enabled($app[0])) { continue; } - $phpgw->acl->add_repository($app[0],'run',$this->account_id,'u',1); + $phpgw->acl->add_repository($app[0],'run',$this->account_id,1); } reset($this->data); return $this->data;