From ca2e74f1533121ae959f9940a142af1d035a2940 Mon Sep 17 00:00:00 2001 From: Lars Kneschke Date: Fri, 16 Dec 2005 07:12:36 +0000 Subject: [PATCH] added objectclass for rfc2307bis.schema --- phpgwapi/inc/class.accounts_ldap.inc.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.accounts_ldap.inc.php b/phpgwapi/inc/class.accounts_ldap.inc.php index 94d666f33b..5d665a0975 100644 --- a/phpgwapi/inc/class.accounts_ldap.inc.php +++ b/phpgwapi/inc/class.accounts_ldap.inc.php @@ -784,6 +784,7 @@ $tmpentry['objectclass'][0] = 'top'; $tmpentry['objectclass'][1] = 'posixGroup'; $tmpentry['objectclass'][2] = 'phpgwAccount'; + #$tmpentry['objectclass'][3] = 'namedObject'; } else { @@ -815,9 +816,9 @@ $entry['objectclass'][0] = 'top'; $entry['objectclass'][1] = 'posixGroup'; $entry['objectclass'][2] = 'phpgwAccount'; + #$entry['objectclass'][3] = 'namedObject'; $entry['cn'] = $GLOBALS['egw']->translation->convert($account_info['account_lid'],$GLOBALS['egw']->translation->charset(),'utf-8'); $entry['gidnumber'] = $account_id; - #$entry['userpassword'] = $GLOBALS['egw']->common->encrypt_password($account_info['account_passwd']); $entry['description'] = 'eGW-created group'; } else