LDAP: case insensitive replace for more robustness

This commit is contained in:
Arthur Schiwon 2013-08-27 13:47:31 +02:00
parent d5062b9e0e
commit 321c514782
1 changed files with 1 additions and 1 deletions

View File

@ -991,7 +991,7 @@ abstract class Access {
* internally we store them for usage in LDAP filters
*/
private function DNasBaseParameter($dn) {
return str_replace('\\5c', '\\', $dn);
return str_ireplace('\\5c', '\\', $dn);
}
/**