From d0ec6b9c15bcae0226fb46ab99d70897b0b96c4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 19 Jul 2016 08:34:12 +0200 Subject: [PATCH] Disable OPTIONS handling - done by sabre --- apps/dav/lib/CalDAV/Publishing/PublishPlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dav/lib/CalDAV/Publishing/PublishPlugin.php b/apps/dav/lib/CalDAV/Publishing/PublishPlugin.php index 938510f1cc..4e82d166fc 100644 --- a/apps/dav/lib/CalDAV/Publishing/PublishPlugin.php +++ b/apps/dav/lib/CalDAV/Publishing/PublishPlugin.php @@ -92,7 +92,7 @@ class PublishPlugin extends ServerPlugin $this->server->on('method:POST', [$this, 'httpPost']); $this->server->on('propFind', [$this, 'propFind']); - $this->server->on('method:OPTIONS', [$this, 'httpOptions'], 5); +// $this->server->on('method:OPTIONS', [$this, 'httpOptions'], 5); } public function propFind(PropFind $propFind, INode $node)