From 056ede1b750e7263644991a9549d5af29148d424 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20M=C3=BCller?= Date: Wed, 19 Jan 2022 18:34:53 +0100 Subject: [PATCH] fixed wrong return code of maintenance off command --- lib/command/maintenance_off.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/command/maintenance_off.php b/lib/command/maintenance_off.php index 6137a7b..8d7e501 100644 --- a/lib/command/maintenance_off.php +++ b/lib/command/maintenance_off.php @@ -18,7 +18,7 @@ protected function execute(InputInterface $input, OutputInterface $output) $addon = rex_addon::get('maintenance'); $addon->setConfig('frontend_aktiv', 'Deaktivieren'); $io->success('maintenance mode disabled'); - return 1; + return 0; } }