From 6bd2a89efc56993331c1e6da705f3065f3867094 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Tue, 5 Nov 2013 19:10:33 +0100 Subject: [PATCH] [ticket/11998] Move application file to bin/phpbbcli.php PHPBB3-11998 --- phpBB/{console.php => bin/phpbbcli.php} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename phpBB/{console.php => bin/phpbbcli.php} (97%) diff --git a/phpBB/console.php b/phpBB/bin/phpbbcli.php similarity index 97% rename from phpBB/console.php rename to phpBB/bin/phpbbcli.php index 50706d0b43..e367748fd9 100644 --- a/phpBB/console.php +++ b/phpBB/bin/phpbbcli.php @@ -16,7 +16,7 @@ if (php_sapi_name() != 'cli') } define('IN_PHPBB', true); -$phpbb_root_path = __DIR__ . '/'; +$phpbb_root_path = __DIR__ . '/../'; $phpEx = substr(strrchr(__FILE__, '.'), 1); require($phpbb_root_path . 'includes/startup.' . $phpEx); require($phpbb_root_path . 'config.' . $phpEx);