aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/bin/phpbbcli.php
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-05-06 17:58:31 +0200
committerTristan Darricau <github@nicofuma.fr>2014-05-06 17:58:31 +0200
commit09011288b6678196d745a5611b27fa0d64c127d5 (patch)
tree1b642919d45fa05b4adc59b29b5b78f5a3375afc /phpBB/bin/phpbbcli.php
parent06ecb62abd5b1bee7ec25094e56968e28d2a29bf (diff)
downloadforums-09011288b6678196d745a5611b27fa0d64c127d5.tar
forums-09011288b6678196d745a5611b27fa0d64c127d5.tar.gz
forums-09011288b6678196d745a5611b27fa0d64c127d5.tar.bz2
forums-09011288b6678196d745a5611b27fa0d64c127d5.tar.xz
forums-09011288b6678196d745a5611b27fa0d64c127d5.zip
[ticket/12507] Move the 'require' statement
PHPBB3-12507
Diffstat (limited to 'phpBB/bin/phpbbcli.php')
-rwxr-xr-xphpBB/bin/phpbbcli.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/bin/phpbbcli.php b/phpBB/bin/phpbbcli.php
index a29990c3f2..dd5c8fa774 100755
--- a/phpBB/bin/phpbbcli.php
+++ b/phpBB/bin/phpbbcli.php
@@ -21,6 +21,7 @@ require($phpbb_root_path . 'includes/startup.' . $phpEx);
require($phpbb_root_path . 'config.' . $phpEx);
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/functions_container.' . $phpEx);
require($phpbb_root_path . 'includes/utf/utf_tools.' . $phpEx);
require($phpbb_root_path . 'phpbb/class_loader.' . $phpEx);
@@ -33,7 +34,6 @@ $phpbb_class_loader_ext->register();
$phpbb_container = phpbb_create_update_container($phpbb_root_path, $phpEx, "$phpbb_root_path/config");
$phpbb_container->get('request')->enable_super_globals();
require($phpbb_root_path . 'includes/compatibility_globals.' . $phpEx);
-require($phpbb_root_path . 'includes/functions_admin.' . $phpEx);
$application = new \phpbb\console\application('phpBB Console', PHPBB_VERSION);
$application->register_container_commands($phpbb_container);