From 2676e681e9c8154bc1865b237c8879e99693ac78 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 7 Aug 2014 12:41:01 +0200 Subject: [PATCH] ldap_ prefix will be added in invokeLDAPMethod(), having it would lead to a unexisting function, fixes #9829 --- apps/user_ldap/lib/ldap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/lib/ldap.php b/apps/user_ldap/lib/ldap.php index 967754db7d..4dad34f5b1 100644 --- a/apps/user_ldap/lib/ldap.php +++ b/apps/user_ldap/lib/ldap.php @@ -106,7 +106,7 @@ class LDAP implements ILDAPWrapper { * @link http://www.php.net/manual/en/function.ldap-explode-dn.php */ public function explodeDN($dn, $withAttrib) { - return $this->invokeLDAPMethod('ldap_explode_dn', $dn, $withAttrib); + return $this->invokeLDAPMethod('explode_dn', $dn, $withAttrib); } /**