diff options
author | kondou <kondou@ts.unde.re> | 2013-08-28 16:44:11 +0200 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2013-08-28 16:44:11 +0200 |
commit | 67c5be9f199c08ac4c9307901e8e6cc678943f05 (patch) | |
tree | 061575d844745b3ad43b9aac518b386228966ad3 /apps/user_ldap/lib/access.php | |
parent | 8d8a57de7fb41030ffb69f098419616f4003119a (diff) | |
parent | 0c02e1efef76430eea8986697cd9736814fb604a (diff) | |
download | nextcloud-server-67c5be9f199c08ac4c9307901e8e6cc678943f05.tar.gz nextcloud-server-67c5be9f199c08ac4c9307901e8e6cc678943f05.zip |
Merge branch 'master' into oc_avatars
Conflicts:
3rdparty
Diffstat (limited to 'apps/user_ldap/lib/access.php')
-rw-r--r-- | apps/user_ldap/lib/access.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 6f6b8d0f016..52aa39012fd 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -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); } /** |