Closed jonasemde closed 9 years ago
Hi Adam, the tests are passing when a plain value is stored in the "setOldInputProvider" Instance. But checkboxes, radiobuttons and select/option fields could return arrays as well.
For example:
<input type="checkbox" name="check[]" value="test1">
... and ...
<input type="checkbox" name="check[]" value="test2">
... submits the following $_REQUEST:
["check"]=> array(2) { [0]=> string(5) "test2" [1]=> string(5) "test2" }
Hey @jonasemde, trying to get some PRs and issues cleaned up, going to close this for now but if you'd like to revisit and get the rest of the tests passing, I'm happy to reopen it and talk about it again.
Can you describe what this change is doing? It's broken some tests and I'm not sure what problem you are trying to solve.