Monotone-Parent: a3184f032f327d5435e63f1c1a9a298908682dbd

Monotone-Revision: e0e6c176d8cb78a7e264cc9d2f05c2cf5bfb77f5

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-11-04T14:55:41
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2010-11-04 14:55:41 +00:00
parent 41ad1a6c8e
commit 982f6abf97
2 changed files with 9 additions and 1 deletions
+6
View File
@@ -1,3 +1,9 @@
2010-11-04 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* Tools/SOGoSockDOperation.m (_getFolderWithId:forUser:): invoke
-[SOGoParentFolder lookupPersonalFolder:ignoringRights:] directly,
in order to avoid a useless permission check.
2010-11-03 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/SOGoDataTable.js (remove): we must
+3 -1
View File
@@ -235,7 +235,9 @@ Class SOGoContactSourceFolderKlass = Nil;
userFolder = [SOGoUserFolder objectWithName: uid inContainer: nil];
parentFolder = [userFolder lookupName: @"Contacts"
inContext: nil acquire: NO];
folder = [parentFolder lookupName: folderId inContext: nil acquire: NO];
/* Note that this prevent lookup on subscribed addressbooks. */
folder = [parentFolder lookupPersonalFolder: folderId
ignoringRights: YES];
return folder;
}