From: Arthur Schiwon Date: Mon, 16 Apr 2012 16:03:02 +0000 (+0200) Subject: LDAP: don't forget to unbind X-Git-Tag: v4.0.0beta~265 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=66018b89b26313f168669bb1dd5c8b701964782a;p=nextcloud-server.git LDAP: don't forget to unbind --- diff --git a/apps/user_ldap/lib_ldap.php b/apps/user_ldap/lib_ldap.php index ab815171b8d..eea4a82011c 100644 --- a/apps/user_ldap/lib_ldap.php +++ b/apps/user_ldap/lib_ldap.php @@ -23,6 +23,13 @@ define('LDAP_GROUP_MEMBER_ASSOC_ATTR','memberUid'); +//needed to unbind, because we use OC_LDAP only statically +class OC_LDAP_DESTRUCTOR { + public function __destruct() { + OC_LDAP::destruct(); + } +} + class OC_LDAP { static protected $ldapConnectionRes = false; static protected $configured = false; @@ -43,6 +50,10 @@ class OC_LDAP { self::establishConnection(); } + static public function destruct() { + @ldap_unbind(self::$ldapConnectionRes); + } + static public function conf($key) { $availableProperties = array( 'ldapUserDisplayName',