diff --git a/inc/caldav-PROPPATCH.php b/inc/caldav-PROPPATCH.php index dc5b48cc..e3978d4d 100644 --- a/inc/caldav-PROPPATCH.php +++ b/inc/caldav-PROPPATCH.php @@ -198,7 +198,7 @@ if ( count($failure) > 0 ) { array_unshift( $failure, new XMLElement('href', $c->protocol_server_port_script . $request->path ) ); $failure[] = new XMLElement('responsedescription', translate("Some properties were not able to be changed.") ); - $multistatus = new XMLElement( "multistatus", new XMLElement( 'response', array_merge( $href, $failure, $desc ) ), array('xmlns'=>'DAV:') ); + $multistatus = new XMLElement( "multistatus", new XMLElement( 'response', $failure ), array('xmlns'=>'DAV:') ); $request->DoResponse( 207, $multistatus->Render(0,''), 'text/xml; charset="utf-8"' ); }