From d879bf8c9621b325742fe236bad23b926bba7ba8 Mon Sep 17 00:00:00 2001 From: jengo Date: Mon, 12 Mar 2001 12:01:56 +0000 Subject: [PATCH] Fixed PHP warning --- phpgwapi/inc/class.acl.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.acl.inc.php b/phpgwapi/inc/class.acl.inc.php index d029b2c447..a45e868f2a 100644 --- a/phpgwapi/inc/class.acl.inc.php +++ b/phpgwapi/inc/class.acl.inc.php @@ -381,7 +381,7 @@ It should use the values in the $this->data $sql = "select acl_appname, acl_rights from phpgw_acl where acl_location = 'run' and " . 'acl_account in '; $security = '('.$account_id; - while($groups = each($memberships)) + while($groups = @each($memberships)) { $group = each($groups); $security .= ','.$group[1]['account_id'];