diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-10-20 19:42:54 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-10-20 19:42:54 +0200 |
commit | faf4b03c43ecac7aa16e42433cce591512f3ef90 (patch) | |
tree | c3ee2adb371dc28fbca2d5d86021dff04842ca90 /phpBB/phpbb/db/html_migrator_output_handler.php | |
parent | 8f6fcd2744a80795139600c2a7c1f46f59b8cbfe (diff) | |
download | forums-faf4b03c43ecac7aa16e42433cce591512f3ef90.tar forums-faf4b03c43ecac7aa16e42433cce591512f3ef90.tar.gz forums-faf4b03c43ecac7aa16e42433cce591512f3ef90.tar.bz2 forums-faf4b03c43ecac7aa16e42433cce591512f3ef90.tar.xz forums-faf4b03c43ecac7aa16e42433cce591512f3ef90.zip |
[ticket/13126] Change messages verbosity levels
PHPBB3-13126
Diffstat (limited to 'phpBB/phpbb/db/html_migrator_output_handler.php')
-rw-r--r-- | phpBB/phpbb/db/html_migrator_output_handler.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/db/html_migrator_output_handler.php b/phpBB/phpbb/db/html_migrator_output_handler.php index 82b7b416e2..e37c667463 100644 --- a/phpBB/phpbb/db/html_migrator_output_handler.php +++ b/phpBB/phpbb/db/html_migrator_output_handler.php @@ -39,7 +39,7 @@ class html_migrator_output_handler implements migrator_output_handler_interface */ public function write($message, $verbosity) { - if ($verbosity <= migrator_output_handler_interface::VERBOSITY_NORMAL) + if ($verbosity <= migrator_output_handler_interface::VERBOSITY_VERBOSE) { $final_message = call_user_func_array(array($this->user, 'lang'), $message); echo $final_message . "<br />\n"; |