mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-30 00:01:50 +00:00
Fix bug 303301 LDAP only works for attributes that are specified in lower case. r/sr=dmose, a=cbeard
This commit is contained in:
parent
3e92638259
commit
7bc9db9f67
@ -169,6 +169,8 @@ nsAbLDAPAttributeMap.prototype = {
|
||||
// go through the list of possible attrs in precedence order
|
||||
for each (var attr in this.mPropertyMap[prop]) {
|
||||
|
||||
attr = attr.toLowerCase();
|
||||
|
||||
// find the first attr that exists in this message
|
||||
if (msgAttrs.indexOf(attr) != -1) {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user