Merge pull request #10261 from owncloud/fix-9829

ldap_ prefix will be added in invokeLDAPMethod(), having it would lead t...
This commit is contained in:
Thomas Müller 2014-08-07 21:38:12 +02:00
commit 461fdd854f
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
/**