Tweak 'we don't support this' response to scheduling requests.

This commit is contained in:
Andrew McMillan 2010-02-26 18:45:18 +13:00
parent 429940f4d9
commit 22e39493e7

View File

@ -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.'"';
}
/**