From 165a377b6921843f936982700490892b751e6712 Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Wed, 17 Jun 2009 10:22:29 +1200 Subject: [PATCH] Return empty resourcetype. --- inc/caldav-REPORT.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/inc/caldav-REPORT.php b/inc/caldav-REPORT.php index 94d162cc..a915ac72 100644 --- a/inc/caldav-REPORT.php +++ b/inc/caldav-REPORT.php @@ -140,6 +140,9 @@ function calendar_to_xml( $properties, $item ) { case 'displayname': $prop->NewElement($k, $displayname ); break; + case 'resourcetype': + $prop->NewElement($k); + break; case 'getetag': $prop->NewElement($k, '"'.$item->dav_etag.'"' ); break;