1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 16:56:44 +02:00

[ticket/13126] Change messages verbosity levels

PHPBB3-13126
This commit is contained in:
Tristan Darricau
2014-10-20 19:42:54 +02:00
parent 8f6fcd2744
commit faf4b03c43
3 changed files with 7 additions and 7 deletions

View File

@@ -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";