aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/console/command/db
diff options
context:
space:
mode:
authorNicofuma <github@nicofuma.fr>2014-05-02 19:31:48 +0200
committerNicofuma <github@nicofuma.fr>2014-05-02 19:39:15 +0200
commitb302c6c1456f2fb9e13d02b1e9268fafda11726d (patch)
treef0818fbcb6319e1c27c2a770d2d23c15f30cd002 /phpBB/phpbb/console/command/db
parentb73d0bdbd671f8a301fda52584bfeaf904551e2d (diff)
downloadforums-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.php2
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;
}