Monotone-Parent: d5e2b98ae15729726ed7a81b845e37f7657dcb8e

Monotone-Revision: 77e874f5910fd1b3a30173bdae0bfa2544be6c07

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-12-30T20:10:32
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2011-12-30 20:10:32 +00:00
parent 4b4af4d323
commit 03e49d5985
2 changed files with 10 additions and 4 deletions

View File

@@ -1,3 +1,9 @@
2011-12-30 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Contacts/SOGoFolder+CardDAV.m (_isValidFilter:): make
use of the lowercase instance of the string, which was erroneously
ignored previously.
2011-12-29 Ludovic Marcotte <lmarcotte@inverse.ca.>
* SoObjects/SOGo/SOGoSQLUserProfile.m (_sqlJsonRepresentation:):

View File

@@ -118,10 +118,10 @@
newString = [theString lowercaseString];
return ([theString isEqualToString: @"sn"]
|| [theString isEqualToString: @"givenname"]
|| [theString isEqualToString: @"mail"]
|| [theString isEqualToString: @"telephonenumber"]);
return ([newString isEqualToString: @"sn"]
|| [newString isEqualToString: @"givenname"]
|| [newString isEqualToString: @"mail"]
|| [newString isEqualToString: @"telephonenumber"]);
}
- (NSDictionary *) _parseContactFilter: (id <DOMElement>) filterElement