LDAP: case insensitive replace for more robustness
This commit is contained in:
parent
d5062b9e0e
commit
321c514782
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue