1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-25 02:51:35 +02:00

[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))
{
$iohandler->add_error_message('MISSING_FILE', array($config_file));
$iohandler->add_error_message(array('MISSING_FILE', $config_file));
return;
}