From b950c5b811571b193b37ff1788d7dae7d7bd1974 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 8 Sep 2011 09:57:32 +0000 Subject: [PATCH] fixed typo causing search for group-members to fail for accounts in sql --- phpgwapi/inc/class.accounts.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.accounts.inc.php b/phpgwapi/inc/class.accounts.inc.php index 4b8e2f3a89..4529e376c0 100644 --- a/phpgwapi/inc/class.accounts.inc.php +++ b/phpgwapi/inc/class.accounts.inc.php @@ -271,7 +271,7 @@ class accounts if ($this->config['account_repository'] != 'ldap' && is_numeric($param['type'])) { - $members = $this->members($group,true); + $members = $this->members($param['type'],true); $param['type'] = 'accounts'; } elseif ($param['type'] == 'owngroups')