diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-09-18 08:17:58 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-09-18 08:17:58 +0200 |
commit | 100d9e1976a16b5368dc2514b1e154b97c967a21 (patch) | |
tree | e3f3faf8e41ca433e88ccba157795c6182db9f9e /lib/private/connector/sabre | |
parent | a6ab106b9a8ad13bd8d132638b7dcfc79c256b26 (diff) | |
parent | bc89bca8039aa09716ebd525fd0d50789430324f (diff) | |
download | nextcloud-server-100d9e1976a16b5368dc2514b1e154b97c967a21.tar.gz nextcloud-server-100d9e1976a16b5368dc2514b1e154b97c967a21.zip |
Merge pull request #19095 from owncloud/set-priority-to-1-for-maintenance
Make sure Maintenance is checked before auth and others
Diffstat (limited to 'lib/private/connector/sabre')
-rw-r--r-- | lib/private/connector/sabre/maintenanceplugin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/connector/sabre/maintenanceplugin.php b/lib/private/connector/sabre/maintenanceplugin.php index 5b48abbc517..f886332418a 100644 --- a/lib/private/connector/sabre/maintenanceplugin.php +++ b/lib/private/connector/sabre/maintenanceplugin.php @@ -65,7 +65,7 @@ class MaintenancePlugin extends ServerPlugin { */ public function initialize(\Sabre\DAV\Server $server) { $this->server = $server; - $this->server->on('beforeMethod', array($this, 'checkMaintenanceMode'), 10); + $this->server->on('beforeMethod', array($this, 'checkMaintenanceMode'), 1); } /** |