summaryrefslogtreecommitdiffstats
path: root/apps/dav
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-07-19 08:34:12 +0200
committerLukas Reschke <lukas@statuscode.ch>2016-09-26 11:55:38 +0200
commitd0ec6b9c15bcae0226fb46ab99d70897b0b96c4b (patch)
tree62011b6cff5152cb7653dce6bfe989e908f660c4 /apps/dav
parente783d01da7b5209a4d3bfdb255573b4fc7fbe73c (diff)
downloadnextcloud-server-d0ec6b9c15bcae0226fb46ab99d70897b0b96c4b.tar.gz
nextcloud-server-d0ec6b9c15bcae0226fb46ab99d70897b0b96c4b.zip
Disable OPTIONS handling - done by sabre
Diffstat (limited to 'apps/dav')
-rw-r--r--apps/dav/lib/CalDAV/Publishing/PublishPlugin.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/CalDAV/Publishing/PublishPlugin.php b/apps/dav/lib/CalDAV/Publishing/PublishPlugin.php
index 938510f1ccf..4e82d166fc0 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)