[ticket/14281] Correctly pass parameters to add_error_message

PHPBB3-14281
This commit is contained in:
Marc Alexander 2015-11-10 16:49:30 +01:00
parent 079b3d074d
commit a1abf8253f

View file

@ -96,7 +96,7 @@ class show extends \phpbb\console\command\command
if (!is_file($config_file)) if (!is_file($config_file))
{ {
$iohandler->add_error_message('MISSING_FILE', array($config_file)); $iohandler->add_error_message(array('MISSING_FILE', $config_file));
return; return;
} }