From a668437d2fa5905b4fddac1f9bd9bcf452125291 Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Wed, 2 Jun 2010 16:44:09 +0000 Subject: [PATCH] Monotone-Parent: e80fdb2dc0dcef4bf96ec623b00dc18ffde34386 Monotone-Revision: 3774742a6943dc4914fba97472a150d427c3f883 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2010-06-02T16:44:09 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 4 ++++ SoObjects/SOGo/WORequest+SOGo.m | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 43aef6e57..912bb52a3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2010-06-02 Wolfgang Sourdeau + * 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 diff --git a/SoObjects/SOGo/WORequest+SOGo.m b/SoObjects/SOGo/WORequest+SOGo.m index 5e42233b4..c1c0d042a 100644 --- a/SoObjects/SOGo/WORequest+SOGo.m +++ b/SoObjects/SOGo/WORequest+SOGo.m @@ -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 ) startElement