From 1ee795d686ae658b8f964ab42eee9d93e6607553 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Thu, 20 Mar 2003 18:07:06 +0000 Subject: [PATCH] removed unused server variable from __sleep() --- lam/lib/ldap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lam/lib/ldap.php b/lam/lib/ldap.php index 123f8b62..fab971aa 100644 --- a/lam/lib/ldap.php +++ b/lam/lib/ldap.php @@ -164,7 +164,7 @@ class Ldap{ // closes connection to LDAP server before serialization function __sleep() { $this->close(); - return array("conf", "server", "username", "password"); + return array("conf", "username", "password"); } // reconnects to LDAP server when deserialized