mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[feature/request-class] New request class supports recursive arrays.
So we can enable this old 3 level deep array input entry in the request_var data provider, it is now also supported! PHPBB3-9716
This commit is contained in:
parent
d7e52ee0f8
commit
cf3f0f825a
1 changed files with 1 additions and 2 deletions
|
@ -215,7 +215,7 @@ class phpbb_request_request_var_test extends phpbb_test_case
|
||||||
'abc' => array()
|
'abc' => array()
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
/* 3-dimensional (not supported atm!
|
// 3-dimensional (not supported atm!
|
||||||
array(
|
array(
|
||||||
// input:
|
// input:
|
||||||
array(
|
array(
|
||||||
|
@ -260,7 +260,6 @@ class phpbb_request_request_var_test extends phpbb_test_case
|
||||||
'ä' => array(4 => array('a' => 2, 'ö' => 3)),
|
'ä' => array(4 => array('a' => 2, 'ö' => 3)),
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
*/
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue