mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/11700] Fix redirection in common.php until fs dependency on request is removed
PHPBB3-11700
This commit is contained in:
parent
40ea7422b1
commit
e998363468
1 changed files with 6 additions and 0 deletions
|
@ -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()
|
||||||
|
|
Loading…
Add table
Reference in a new issue