From c0227e9aa240909ebd88d1936845088978c83db0 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Fri, 14 Mar 2003 15:26:53 +0000 Subject: [PATCH] added function which returns the LDAP connection handle --- lam/lib/ldap.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lam/lib/ldap.php b/lam/lib/ldap.php index 55b72454..f25cff54 100644 --- a/lam/lib/ldap.php +++ b/lam/lib/ldap.php @@ -103,6 +103,11 @@ class Ldap{ ldap_close($this->server); } + // returns the LDAP connection handle + function server() { + return $this->server; + } + }