aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/phpbb/install/helper/iohandler/cli_iohandler.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/phpbb/install/helper/iohandler/cli_iohandler.php b/phpBB/phpbb/install/helper/iohandler/cli_iohandler.php
index dae5d339a5..4d0341ef12 100644
--- a/phpBB/phpbb/install/helper/iohandler/cli_iohandler.php
+++ b/phpBB/phpbb/install/helper/iohandler/cli_iohandler.php
@@ -126,7 +126,7 @@ class cli_iohandler extends iohandler_base
$this->io->newLine();
$message = $this->translate_message($error_title, $error_description);
- $message_string = $message['title'] . "\n" . (!empty($message['description']) ? $message['description'] : '');
+ $message_string = $message['title'] . (!empty($message['description']) ? "\n" . $message['description'] : '');
$this->io->error($message_string);
if ($this->progress_bar !== null)
@@ -144,7 +144,7 @@ class cli_iohandler extends iohandler_base
$this->io->newLine();
$message = $this->translate_message($warning_title, $warning_description);
- $message_string = $message['title'] . "\n" . (!empty($message['description']) ? $message['description'] : '');
+ $message_string = $message['title'] . (!empty($message['description']) ? "\n" . $message['description'] : '');
$this->io->warning($message_string);
if ($this->progress_bar !== null)
@@ -174,7 +174,7 @@ class cli_iohandler extends iohandler_base
$this->io->newLine();
$message = $this->translate_message($error_title, $error_description);
- $message_string = $message['title'] . "\n" . (!empty($message['description']) ? $message['description'] : '');
+ $message_string = $message['title'] . (!empty($message['description']) ? "\n" . $message['description'] : '');
$this->io->success($message_string);
if ($this->progress_bar !== null)