diff options
author | Nicofuma <github@nicofuma.fr> | 2014-05-02 19:31:48 +0200 |
---|---|---|
committer | Nicofuma <github@nicofuma.fr> | 2014-05-02 19:39:15 +0200 |
commit | b302c6c1456f2fb9e13d02b1e9268fafda11726d (patch) | |
tree | f0818fbcb6319e1c27c2a770d2d23c15f30cd002 /phpBB/phpbb/console/command/db | |
parent | b73d0bdbd671f8a301fda52584bfeaf904551e2d (diff) | |
download | forums-b302c6c1456f2fb9e13d02b1e9268fafda11726d.tar forums-b302c6c1456f2fb9e13d02b1e9268fafda11726d.tar.gz forums-b302c6c1456f2fb9e13d02b1e9268fafda11726d.tar.bz2 forums-b302c6c1456f2fb9e13d02b1e9268fafda11726d.tar.xz forums-b302c6c1456f2fb9e13d02b1e9268fafda11726d.zip |
[ticket/12474] Error messages should be displayed with <error> tag
PHPBB3-12474
Diffstat (limited to 'phpBB/phpbb/console/command/db')
-rw-r--r-- | phpBB/phpbb/console/command/db/migrate.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/console/command/db/migrate.php b/phpBB/phpbb/console/command/db/migrate.php index 79a803e8fb..044929adaa 100644 --- a/phpBB/phpbb/console/command/db/migrate.php +++ b/phpBB/phpbb/console/command/db/migrate.php @@ -65,7 +65,7 @@ class migrate extends \phpbb\console\command\command } catch (\phpbb\db\migration\exception $e) { - $output->writeln($e->getLocalisedMessage($this->user)); + $output->writeln('<error>' . $e->getLocalisedMessage($this->user) . '</error>'); $this->finalise_update(); return 1; } |