Correct typo in POST handling.

This commit is contained in:
Andrew McMillan 2010-11-21 00:50:47 +13:00
parent 9470f0b9e0
commit 7b966171cf

View File

@ -120,7 +120,7 @@ function handle_cancel_request( $ic ) {
$response = $reply->NewXMLElement( "response", false, false, 'urn:ietf:params:xml:ns:caldav' );
$reply->CalDAVElement($response, "request-status", "2.0;Success" ); // Cargo-cult setting
$response = $reply->NewXMLElement( "schedule-response", $responses, $reply->GetXmlNsArray() );
$response = $reply->NewXMLElement( "schedule-response", $response, $reply->GetXmlNsArray() );
$request->XMLResponse( 200, $response );
}