From 34caa21bd3a707f06bdd4f0893cad291707c1748 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 15 Feb 2005 08:28:16 +0000 Subject: [PATCH] merged fix from Andy only commited to HEAD: fix group edit bug detected by Maanus, so after editing groups in combination with LDAP, the remain with account type "g" and not getting "u". --- admin/inc/class.uiaccounts.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/inc/class.uiaccounts.inc.php b/admin/inc/class.uiaccounts.inc.php index cfbc097fd6..87026fd1a0 100755 --- a/admin/inc/class.uiaccounts.inc.php +++ b/admin/inc/class.uiaccounts.inc.php @@ -901,7 +901,7 @@ $p->set_block('edit','select'); $p->set_block('edit','popwin'); - $accounts = CreateObject('phpgwapi.accounts',$group_info['account_id'],'u'); + $accounts = CreateObject('phpgwapi.accounts',$group_info['account_id'],'g'); if (!is_object($GLOBALS['phpgw']->uiaccountsel)) {