diff --git a/apps/dav/lib/Connector/Sabre/MaintenancePlugin.php b/apps/dav/lib/Connector/Sabre/MaintenancePlugin.php index 0e176d74a1c29..5e6f8ec73b09b 100644 --- a/apps/dav/lib/Connector/Sabre/MaintenancePlugin.php +++ b/apps/dav/lib/Connector/Sabre/MaintenancePlugin.php @@ -82,7 +82,7 @@ public function initialize(\Sabre\DAV\Server $server) { */ public function checkMaintenanceMode() { if ($this->config->getSystemValueBool('maintenance')) { - throw new ServiceUnavailable($this->l10n->t('System in maintenance mode.')); + throw new ServiceUnavailable($this->l10n->t('System is in maintenance mode.')); } if (Util::needUpgrade()) { throw new ServiceUnavailable($this->l10n->t('Upgrade needed')); diff --git a/apps/dav/tests/unit/Connector/Sabre/MaintenancePluginTest.php b/apps/dav/tests/unit/Connector/Sabre/MaintenancePluginTest.php index 94bd1bb0b37ed..afef4e91414c0 100644 --- a/apps/dav/tests/unit/Connector/Sabre/MaintenancePluginTest.php +++ b/apps/dav/tests/unit/Connector/Sabre/MaintenancePluginTest.php @@ -55,7 +55,7 @@ protected function setUp(): void { public function testMaintenanceMode() { $this->expectException(\Sabre\DAV\Exception\ServiceUnavailable::class); - $this->expectExceptionMessage('System in maintenance mode.'); + $this->expectExceptionMessage('System is in maintenance mode.'); $this->config ->expects($this->exactly(1))