mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-29 10:39:19 +02:00
[feature/auth-refactor] A possible fix for the functional test failures
I don't like this fix as it really shouldn't be needed. But it makes the functional tests pass. PHPBB3-9734
This commit is contained in:
parent
27f0b9ff43
commit
66118ea49e
@ -79,7 +79,7 @@ class phpbb_request implements phpbb_request_interface
|
||||
|
||||
// simulate request_order = GP
|
||||
$this->original_request = $this->input[phpbb_request_interface::REQUEST];
|
||||
$this->input[phpbb_request_interface::REQUEST] = $this->input[phpbb_request_interface::POST] + $this->input[phpbb_request_interface::GET];
|
||||
$this->input[phpbb_request_interface::REQUEST] = (array)$this->input[phpbb_request_interface::POST] + (array)$this->input[phpbb_request_interface::GET];
|
||||
|
||||
if ($disable_super_globals)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user