mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-22 03:45:25 +00:00
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:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user