Skip to content

Commit

Permalink
Merge pull request #48 from rene-mueller/master
Browse files Browse the repository at this point in the history
fixed wrong return code of maintenance off command
  • Loading branch information
skerbis authored Feb 16, 2022
2 parents 23439eb + 056ede1 commit 13b4c25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/command/maintenance_off.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}

Expand Down

0 comments on commit 13b4c25

Please sign in to comment.