mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/8713] Always trim array keys.
PHPBB3-8713
This commit is contained in:
parent
160c49351b
commit
798033075b
1 changed files with 1 additions and 1 deletions
|
@ -184,7 +184,7 @@ class phpbb_request_type_cast_helper implements phpbb_request_type_cast_helper_i
|
||||||
|
|
||||||
foreach ($_var as $k => $v)
|
foreach ($_var as $k => $v)
|
||||||
{
|
{
|
||||||
$this->set_var($k, $k, $key_type, $multibyte, $trim);
|
$this->set_var($k, $k, $key_type, $multibyte);
|
||||||
|
|
||||||
$this->recursive_set_var($v, $default_value, $multibyte, $trim);
|
$this->recursive_set_var($v, $default_value, $multibyte, $trim);
|
||||||
$var[$k] = $v;
|
$var[$k] = $v;
|
||||||
|
|
Loading…
Add table
Reference in a new issue