From 6d40b81dda242f5f07fe1e01430d70e6879d1885 Mon Sep 17 00:00:00 2001 From: David King Date: Sat, 20 Oct 2012 10:58:35 -0400 Subject: [PATCH] [feature/compiled-dic] Remove unused function parameter PHPBB3-11152 --- phpBB/includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index d724374744..ac63bd086c 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -5475,7 +5475,7 @@ function phpbb_create_install_container($phpbb_root_path, $phpEx) * @param string $phpEx PHP Extension * @return ContainerBuilder object (compiled) */ -function phpbb_create_compiled_container(array $extensions, array $passes, $config_file_path, $phpbb_root_path, $phpEx) +function phpbb_create_compiled_container(array $extensions, array $passes, $phpbb_root_path, $phpEx) { // Check for our cached container; if it exists, use it if (file_exists("{$phpbb_root_path}cache/container.$phpEx"))