aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoseph Warner <hardolaf@hardolaf.com>2013-07-01 13:32:16 -0400
committerJoseph Warner <hardolaf@hardolaf.com>2013-07-01 13:33:14 -0400
commit66118ea49e2dc1a54ce1a76fa4856ff158df9511 (patch)
tree7eba1f3254724cb8eaa71c1d929e3e8f14dacd94
parent27f0b9ff4359a60f98533aff2a87c1848d622d4c (diff)
downloadforums-66118ea49e2dc1a54ce1a76fa4856ff158df9511.tar
forums-66118ea49e2dc1a54ce1a76fa4856ff158df9511.tar.gz
forums-66118ea49e2dc1a54ce1a76fa4856ff158df9511.tar.bz2
forums-66118ea49e2dc1a54ce1a76fa4856ff158df9511.tar.xz
forums-66118ea49e2dc1a54ce1a76fa4856ff158df9511.zip
[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
-rw-r--r--phpBB/includes/request/request.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/request/request.php b/phpBB/includes/request/request.php
index ae3c526d89..c0bb453c7c 100644
--- a/phpBB/includes/request/request.php
+++ b/phpBB/includes/request/request.php
@@ -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)
{