diff --git a/ChangeLog b/ChangeLog index 70e266bc6..d92371f7e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2009-08-10 Wolfgang Sourdeau + * Tests/webdavlib.py (WebDAVClient._prepare_headers): fixed a typo + causing the "depth" parameter to never be issued in query heades. + * SoObjects/Appointments/SOGoAppointmentObject.m (+webdavAclManager): don't register "respond-to-component" as abstract, otherwise it won't appear in the returned list. diff --git a/Tests/webdavlib.py b/Tests/webdavlib.py index 548d2b3b8..1a837c1e7 100644 --- a/Tests/webdavlib.py +++ b/Tests/webdavlib.py @@ -21,7 +21,7 @@ class WebDAVClient: "authorization": "Basic %s" % self.simpleauth_hash } if body is not None: headers["content-length"] = len(body) - if query.__dict__.has_key("query") and query.depth is not None: + if query.__dict__.has_key("depth") and query.depth is not None: headers["depth"] = query.depth if query.__dict__.has_key("content_type"): headers["content-type"] = query.content_type