Monotone-Parent: 66637dd9fbad7528514f958ca2e14068c4dc2386

Monotone-Revision: 80b9eb72427bb0152c01595e9c20c8fc8513d18f

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-10-20T21:14:49
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2006-10-20 21:14:49 +00:00
parent f5611606f2
commit 781f65ffc3
2 changed files with 9 additions and 5 deletions
+4
View File
@@ -1,5 +1,9 @@
2006-10-20 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Contacts/SOGoContactLDAPFolder.m
([SOGoContactLDAPFolder
-lookupContactsWithFilter:filtersortBy:sortKeyordering:sortOrdering]): perform the searchs on objects which start with instead of contain the lookup key.
* SoObjects/Appointments/SOGoAptMailNotification.[hm]: work on
iCalEntityObject instances instead of just iCalEvent's.
+5 -5
View File
@@ -331,12 +331,12 @@
if (filter && [filter length] > 0)
{
qs = [NSString stringWithFormat:
@"(cn='*%@*')"
@"OR (sn='*%@*')"
@"OR (displayName='*%@*')"
@"OR (mail='*%@*')"
@"(cn='%@*')"
@"OR (sn='%@*')"
@"OR (displayName='%@*')"
@"OR (mail='%@*')"
@"OR (telephoneNumber='*%@*')",
filter, filter, filter, filter];
filter, filter, filter, filter, filter];
qualifier = [EOQualifier qualifierWithQualifierFormat: qs];
}
else