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