mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-19 16:11:21 +02:00
[ticket/11700] Fix redirection in common.php until fs dependency on request is removed
PHPBB3-11700
This commit is contained in:
@@ -47,6 +47,12 @@ if (!defined('PHPBB_INSTALLED'))
|
|||||||
|
|
||||||
// Eliminate . and .. from the path
|
// Eliminate . and .. from the path
|
||||||
require($phpbb_root_path . 'phpbb/filesystem.' . $phpEx);
|
require($phpbb_root_path . 'phpbb/filesystem.' . $phpEx);
|
||||||
|
require($phpbb_root_path . 'phpbb/symfony_request.' . $phpEx);
|
||||||
|
require($phpbb_root_path . 'phpbb/request/deactivated_super_global.' . $phpEx);
|
||||||
|
require($phpbb_root_path . 'phpbb/request/type_cast_helper_interface.' . $phpEx);
|
||||||
|
require($phpbb_root_path . 'phpbb/request/type_cast_helper.' . $phpEx);
|
||||||
|
require($phpbb_root_path . 'phpbb/request/request_interface.' . $phpEx);
|
||||||
|
require($phpbb_root_path . 'phpbb/request/request.' . $phpEx);
|
||||||
$phpbb_filesystem = new phpbb\filesystem(
|
$phpbb_filesystem = new phpbb\filesystem(
|
||||||
new phpbb\symfony_request(
|
new phpbb\symfony_request(
|
||||||
new phpbb\request\request()
|
new phpbb\request\request()
|
||||||
|
Reference in New Issue
Block a user