diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2014-08-07 12:41:01 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2014-08-07 17:15:36 +0200 |
commit | 2676e681e9c8154bc1865b237c8879e99693ac78 (patch) | |
tree | 27b293ccf772537a30a9e520ba1f292f67c1630e | |
parent | 2821f7241b1d36db0c74ca1111496f7dbd50080c (diff) | |
download | nextcloud-server-2676e681e9c8154bc1865b237c8879e99693ac78.tar.gz nextcloud-server-2676e681e9c8154bc1865b237c8879e99693ac78.zip |
ldap_ prefix will be added in invokeLDAPMethod(), having it would lead to a unexisting function, fixes #9829
-rw-r--r-- | apps/user_ldap/lib/ldap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/ldap.php b/apps/user_ldap/lib/ldap.php index 967754db7d3..4dad34f5b1e 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); } /** |