diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2012-06-25 20:53:31 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2012-06-25 20:53:45 +0200 |
commit | fb53708d10924ee63749439b0c51029093a04b78 (patch) | |
tree | 9aa1f1986c46e6b05b90d92dbe92e696559cd38e | |
parent | 2250fb1159934a38b1a45c4fbca7fece4b11733c (diff) | |
download | nextcloud-server-fb53708d10924ee63749439b0c51029093a04b78.tar.gz nextcloud-server-fb53708d10924ee63749439b0c51029093a04b78.zip |
LDAP: compare base trees case insensitively
-rw-r--r-- | apps/user_ldap/lib_ldap.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/user_ldap/lib_ldap.php b/apps/user_ldap/lib_ldap.php index 2940e1d8252..21c4e57e293 100644 --- a/apps/user_ldap/lib_ldap.php +++ b/apps/user_ldap/lib_ldap.php @@ -171,7 +171,7 @@ class OC_LDAP { * returns the internal ownCloud name for the given LDAP DN of the group */ static public function dn2groupname($dn, $ldapname = null) { - if(strrpos($dn, self::$ldapBaseGroups) !== (strlen($dn)-strlen(self::$ldapBaseGroups))) { + if(strripos($dn, self::$ldapBaseGroups) !== (strlen($dn)-strlen(self::$ldapBaseGroups))) { return false; } return self::dn2ocname($dn, $ldapname, false); @@ -186,7 +186,7 @@ class OC_LDAP { * returns the internal ownCloud name for the given LDAP DN of the user, false on DN outside of search DN */ static public function dn2username($dn, $ldapname = null) { - if(strrpos($dn, self::$ldapBaseUsers) !== (strlen($dn)-strlen(self::$ldapBaseUsers))) { + if(strripos($dn, self::$ldapBaseUsers) !== (strlen($dn)-strlen(self::$ldapBaseUsers))) { return false; } return self::dn2ocname($dn, $ldapname, true); |