Skip to content

Commit

Permalink
Setup-Commands: Message decoden (#6027)
Browse files Browse the repository at this point in the history
  • Loading branch information
gharlan committed Mar 11, 2024
1 parent 8c86d2b commit bce9955
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion redaxo/src/core/lib/console/setup/check.php
Expand Up @@ -26,7 +26,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int

$errors = rex_setup::checkEnvironment();
if (0 == count($errors)) {
$io->success(rex_i18n::msg('setup_208', PHP_VERSION));
$io->success($this->decodeMessage(rex_i18n::msg('setup_208', PHP_VERSION)));
} else {
$exitCode = 1;
$errors = array_map($this->decodeMessage(...), $errors);
Expand Down
2 changes: 1 addition & 1 deletion redaxo/src/core/lib/console/setup/run.php
Expand Up @@ -541,7 +541,7 @@ private function performSystemcheck(): int
$this->io->warning($warning);
}
} else {
$this->io->success(rex_i18n::msg('setup_208', PHP_VERSION));
$this->io->success($this->decodeMessage(rex_i18n::msg('setup_208', PHP_VERSION)));
}
} else {
$errors = array_map($this->decodeMessage(...), $errors);
Expand Down

0 comments on commit bce9955

Please sign in to comment.