removed obsolete attributes from __sleep()

This commit is contained in:
Roland Gruber 2005-07-05 13:00:23 +00:00
parent 55b4b9c995
commit eadba74914
1 changed files with 2 additions and 3 deletions

View File

@ -294,9 +294,8 @@ class Ldap{
function __sleep() {
$this->close();
// define which attributes to save
return array("conf", "username", "password", "ldapUserAttributes", "ldapGroupAttributes",
"ldapHostAttributes", "objectClasses", "attributes", "supports_unix_hosts", "supports_samba2_schema",
"supports_samba3_schema", "rand");
return array("conf", "username", "password", "objectClasses", "attributes",
"supports_unix_hosts", "supports_samba2_schema", "supports_samba3_schema", "rand");
}
/** Reconnects to LDAP server when deserialized */