From 4d4d3824f30119b18cfab0939d14b74d18b76283 Mon Sep 17 00:00:00 2001 From: Tristan Darricau Date: Sun, 9 Oct 2016 10:47:56 +0200 Subject: [PATCH] [ticket/14813] Add missing functions_compatibiity in phpbbcli PHPBB3-14813 --- phpBB/bin/phpbbcli.php | 1 + 1 file changed, 1 insertion(+) diff --git a/phpBB/bin/phpbbcli.php b/phpBB/bin/phpbbcli.php index 804a7e09a0..2bca6e7b89 100755 --- a/phpBB/bin/phpbbcli.php +++ b/phpBB/bin/phpbbcli.php @@ -42,6 +42,7 @@ require($phpbb_root_path . 'includes/constants.' . $phpEx); require($phpbb_root_path . 'includes/functions.' . $phpEx); require($phpbb_root_path . 'includes/functions_admin.' . $phpEx); require($phpbb_root_path . 'includes/utf/utf_tools.' . $phpEx); +require($phpbb_root_path . 'includes/functions_compatibility.' . $phpEx); $phpbb_container_builder = new \phpbb\di\container_builder($phpbb_root_path, $phpEx); $phpbb_container = $phpbb_container_builder->with_config($phpbb_config_php_file);