]> err.no Git - scalable-opengroupware.org/commitdiff
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1126 d1b88da0-ebda-0310...
authorwolfgang <wolfgang@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Fri, 27 Jul 2007 17:47:14 +0000 (17:47 +0000)
committerwolfgang <wolfgang@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Fri, 27 Jul 2007 17:47:14 +0000 (17:47 +0000)
ChangeLog
SoObjects/Contacts/SOGoContactGCSFolder.m

index 2cfff9547232a08ac1dd05e22bd589f0342df95b..9f2d6069488b3bb6de9ec76cf76aabf172c8ad97 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2007-07-27  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
+
+       * SoObjects/Contacts/SOGoContactGCSFolder.m ()
+       ([SOGoContactGCSFolder
+       -lookupContactsWithFilter:filtersortBy:sortKeyordering:sortOrdering]):
+       return records if the db records are > 0 and not just > 1...
+
 2007-07-24  Wolfgang Sourdeau  <wsourdeau@inverse.ca>
 
        * UI/Contacts/UIxContactsListView.m ([-displayName]): removed
index 23444abd78860f6a84a98d277af3f6471a4e5cc3..7228ac6286e3cde142237559d34cf0a3ebce5e09 100644 (file)
   qualifier = [self _qualifierForFilter: filter];
   dbRecords = [[self ocsFolder] fetchFields: fields
                                matchingQualifier: qualifier];
-  if ([dbRecords count] > 1)
+  if ([dbRecords count] > 0)
     {
       records = [self _flattenedRecords: dbRecords];
       ordering