diff options
author | Andreas Fischer <bantu@phpbb.com> | 2014-05-06 18:33:40 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2014-05-06 18:33:40 +0200 |
commit | 0d4a7d76f4a0bbc87c29a0b3a504ae1f4c38c457 (patch) | |
tree | 1b642919d45fa05b4adc59b29b5b78f5a3375afc /phpBB/bin/phpbbcli.php | |
parent | 571d6ae852fd6bc6d3ce57b00cb1faed84f45434 (diff) | |
parent | 09011288b6678196d745a5611b27fa0d64c127d5 (diff) | |
download | forums-0d4a7d76f4a0bbc87c29a0b3a504ae1f4c38c457.tar forums-0d4a7d76f4a0bbc87c29a0b3a504ae1f4c38c457.tar.gz forums-0d4a7d76f4a0bbc87c29a0b3a504ae1f4c38c457.tar.bz2 forums-0d4a7d76f4a0bbc87c29a0b3a504ae1f4c38c457.tar.xz forums-0d4a7d76f4a0bbc87c29a0b3a504ae1f4c38c457.zip |
Merge pull request #2416 from Nicofuma/ticket/12507
[ticket/12507] Add console command to purge the cache
* Nicofuma/ticket/12507:
[ticket/12507] Move the 'require' statement
[ticket/12507] Add console command to purge the cache
Diffstat (limited to 'phpBB/bin/phpbbcli.php')
-rwxr-xr-x | phpBB/bin/phpbbcli.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/bin/phpbbcli.php b/phpBB/bin/phpbbcli.php index 02d6b88943..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); |