Monotone-Parent: e80fdb2dc0dcef4bf96ec623b00dc18ffde34386

Monotone-Revision: 3774742a6943dc4914fba97472a150d427c3f883

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-06-02T16:44:09
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2010-06-02 16:44:09 +00:00
parent c2721bfb6e
commit a668437d2f
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -1,5 +1,9 @@
2010-06-02 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/WORequest+SOGo.m (-handledByDefaultHandler):
fixed a bug where the -requestHandlerKey method would be invoked
on the "request" (NGHttpRequest) ivar rather than on self.
* SoObjects/SOGo/SOGoUserFolder.m (_subFoldersFromFolder:):
thanks to the change below, the ACL checking code is no longer
needed here, where we can now concentrate on returning subfolders
+1 -1
View File
@@ -37,7 +37,7 @@
- (BOOL) handledByDefaultHandler
{
#warning this should be changed someday
return ![[request requestHandlerKey] isEqualToString:@"dav"];
return ![[self requestHandlerKey] isEqualToString:@"dav"];
}
- (NSArray *) _propertiesOfElement: (id <DOMElement>) startElement