From 1ad6713dfc67c185573bee4739ab12c65ccd725f Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Mon, 2 Nov 2009 14:23:22 +1300 Subject: [PATCH] Correct response for schedule-inbox. --- inc/caldav-PROPFIND.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/caldav-PROPFIND.php b/inc/caldav-PROPFIND.php index 35d583f0..8c24ae94 100644 --- a/inc/caldav-PROPFIND.php +++ b/inc/caldav-PROPFIND.php @@ -510,7 +510,7 @@ function collection_to_xml( $collection ) { if ( $session->user_no != $collection->user_no ) { $reply->CalDAVElement( $denied, 'calendar-free-busy-set'); } - else if ( $collection->type == 'in' ) { + else if ( $collection->type == 'schedule-inbox' ) { $fb_set = array(); foreach( $request->principal->calendar_free_busy_set AS $k => $v ) { $fb_set[] = $reply->href( $v, false, 'DAV:' );