summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@owncloud.com>2014-08-07 12:41:01 +0200
committerArthur Schiwon <blizzz@owncloud.com>2014-08-07 17:15:36 +0200
commit2676e681e9c8154bc1865b237c8879e99693ac78 (patch)
tree27b293ccf772537a30a9e520ba1f292f67c1630e
parent2821f7241b1d36db0c74ca1111496f7dbd50080c (diff)
downloadnextcloud-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.php2
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);
}
/**