Changed around get_type() to grab the user account first, then the group accout.

This commit is contained in:
skeeter 2001-09-05 13:43:27 +00:00
parent e372d5bcdc
commit dba3fc60f0

View File

@ -500,7 +500,7 @@
$ds = $GLOBALS['phpgw']->common->ldapConnect();
$allValues = array();
$sri = ldap_search($ds, $this->group_context, "(&(gidnumber=$account_id)(phpgwaccounttype=g))");
$sri = ldap_search($ds, $this->user_context, "(&(uidnumber=$account_id)(phpgwaccounttype=u))");
$allValues = ldap_get_entries($ds, $sri);
if ($allValues[0]['phpgwaccounttype'][0])
@ -510,7 +510,7 @@
}
$allValues = array();
$sri = ldap_search($ds, $this->user_context, "(&(uidnumber=$account_id)(phpgwaccounttype=u))");
$sri = ldap_search($ds, $this->group_context, "(&(gidnumber=$account_id)(phpgwaccounttype=g))");
$allValues = ldap_get_entries($ds, $sri);
if ($allValues[0]['phpgwaccounttype'][0])