From: helge Date: Thu, 7 Oct 2004 23:00:59 +0000 (+0000) Subject: minor improv. for WebDAV X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fc9f6b8ffe8c4e6d7a8664e9890d9939b2c8ffb2;p=scalable-opengroupware.org minor improv. for WebDAV git-svn-id: http://svn.opengroupware.org/SOGo/trunk@370 d1b88da0-ebda-0310-925b-ed51d893ca5b --- diff --git a/SOGo/SoObjects/SOGo/ChangeLog b/SOGo/SoObjects/SOGo/ChangeLog index 7ea1785e..68f1da95 100644 --- a/SOGo/SoObjects/SOGo/ChangeLog +++ b/SOGo/SoObjects/SOGo/ChangeLog @@ -1,5 +1,9 @@ 2004-10-08 Helge Hess + * v0.9.22 + + * SOGoUserFolder.m: do not try to fetch file names in this folder + * v0.9.21 * SOGoContentObject.m: added PUTAction: diff --git a/SOGo/SoObjects/SOGo/SOGoUserFolder.m b/SOGo/SoObjects/SOGo/SOGoUserFolder.m index 96752e34..f0ccb776 100644 --- a/SOGo/SoObjects/SOGo/SOGoUserFolder.m +++ b/SOGo/SoObjects/SOGo/SOGoUserFolder.m @@ -172,6 +172,11 @@ /* WebDAV */ +- (NSArray *)fetchContentObjectNames { + /* the SOGoUserFolder has no 'files', only subfolders */ + return nil; +} + - (BOOL)davIsCollection { return YES; } diff --git a/SOGo/SoObjects/SOGo/Version b/SOGo/SoObjects/SOGo/Version index d5b1826c..4bb2a0be 100644 --- a/SOGo/SoObjects/SOGo/Version +++ b/SOGo/SoObjects/SOGo/Version @@ -1,3 +1,3 @@ # $Id: Version 170 2004-08-11 10:45:40Z helge $ -SUBMINOR_VERSION:=21 +SUBMINOR_VERSION:=22