aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/request/request.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2014-11-16 16:50:15 +0100
committerNils Adermann <naderman@naderman.de>2014-11-16 16:50:15 +0100
commit4ffdb129388d72cdcc790f1c3713e3770d8aeca9 (patch)
tree21782b0a29593cc789b8e206eb0624aaf3febdd0 /phpBB/phpbb/request/request.php
parente27b69f42a4d23ceb2f19050366a3f7d91887c69 (diff)
parent0dfe1d0d8b007ec7b7cae0715cfb2e5f4e33bad4 (diff)
downloadforums-4ffdb129388d72cdcc790f1c3713e3770d8aeca9.tar
forums-4ffdb129388d72cdcc790f1c3713e3770d8aeca9.tar.gz
forums-4ffdb129388d72cdcc790f1c3713e3770d8aeca9.tar.bz2
forums-4ffdb129388d72cdcc790f1c3713e3770d8aeca9.tar.xz
forums-4ffdb129388d72cdcc790f1c3713e3770d8aeca9.zip
Merge remote-tracking branch 'github-nicofuma/ticket/13280' into develop-ascraeus
* github-nicofuma/ticket/13280: [ticket/13280] Output escaping for the symfony request object [ticket/13280] Add new tests [ticket/13280] Make the tests failing [ticket/13280] Revert "Merge pull request #3107 from marc1706/ticket/13280"
Diffstat (limited to 'phpBB/phpbb/request/request.php')
-rw-r--r--phpBB/phpbb/request/request.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/phpBB/phpbb/request/request.php b/phpBB/phpbb/request/request.php
index ea9854894c..f0f2f7e2a2 100644
--- a/phpBB/phpbb/request/request.php
+++ b/phpBB/phpbb/request/request.php
@@ -416,4 +416,27 @@ class request implements \phpbb\request\request_interface
{
return $this->input[$super_global];
}
+
+ /**
+ * {@inheritdoc}
+ */
+ public function escape($var, $multibyte)
+ {
+ if (is_array($var))
+ {
+ $result = array();
+ foreach ($var as $key => $value)
+ {
+ $this->type_cast_helper->set_var($key, $key, gettype($key), $multibyte);
+ $result[$key] = $this->escape($value, $multibyte);
+ }
+ $var = $result;
+ }
+ else
+ {
+ $this->type_cast_helper->set_var($var, $var, 'string', $multibyte);
+ }
+
+ return $var;
+ }
}