ldap_ prefix will be added in invokeLDAPMethod(), having it would lead to a unexisting function, fixes #9829

This commit is contained in:
Arthur Schiwon 2014-08-07 12:41:01 +02:00
parent 2821f7241b
commit 2676e681e9
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);
}
/**