summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-08-07 21:38:12 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2014-08-07 21:38:12 +0200
commit461fdd854fb9eb2c3183f54a25942ad649eb64dc (patch)
tree2ae59c08ecc94e378e51dab4a3f7261d63776219
parent8cd6f9a1133570ab2f0d595f65dffcc9aeab7f96 (diff)
parent2676e681e9c8154bc1865b237c8879e99693ac78 (diff)
downloadnextcloud-server-461fdd854fb9eb2c3183f54a25942ad649eb64dc.tar.gz
nextcloud-server-461fdd854fb9eb2c3183f54a25942ad649eb64dc.zip
Merge pull request #10261 from owncloud/fix-9829
ldap_ prefix will be added in invokeLDAPMethod(), having it would lead t...
-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);
}
/**