[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:
Nils Adermann 2010-03-06 05:49:57 +01:00
parent d7e52ee0f8
commit cf3f0f825a

View file

@ -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)),
) )
), ),
*/
); );
} }