From 22e39493e727fba04f34e4cc5b4002927201261e Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Fri, 26 Feb 2010 18:45:18 +1300 Subject: [PATCH] Tweak 'we don't support this' response to scheduling requests. --- inc/caldav-PUT-functions.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/inc/caldav-PUT-functions.php b/inc/caldav-PUT-functions.php index 9ebc1aa5..e99d66cd 100644 --- a/inc/caldav-PUT-functions.php +++ b/inc/caldav-PUT-functions.php @@ -138,7 +138,8 @@ function public_events_only( $user_no, $dav_name ) { * @return float The result of the scheduling request, per caldav-sched #3.5.4 */ function write_scheduling_request( &$resource, $attendee ) { - return '5.4'; + $response = '5.3;'.translate('No scheduling support for user'); + return '"'.$response.'"'; } /**