From a1abf8253f2328f0a5c7b8d7c5885c6cec93f547 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Tue, 10 Nov 2015 16:49:30 +0100 Subject: [PATCH] [ticket/14281] Correctly pass parameters to add_error_message PHPBB3-14281 --- phpBB/phpbb/install/console/command/install/config/show.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/phpbb/install/console/command/install/config/show.php b/phpBB/phpbb/install/console/command/install/config/show.php index 587b5f4846..5d82d8d1ef 100644 --- a/phpBB/phpbb/install/console/command/install/config/show.php +++ b/phpBB/phpbb/install/console/command/install/config/show.php @@ -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; }