Actions
Bug #102361
closedform multiple breaks RequestParameters
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Extbase
Target version:
-
Start date:
2023-11-10
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
12
PHP Version:
8.2
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
When using
<f:form.upload name="files" multiple="true" class="form-control" />
in a Backend Module, the request breaks because of
Argument #1 ($argumentName) must be of type string, int given
Solution - cast $argumentName to (string) in
https://github.com/TYPO3/typo3/blob/main/typo3/sysext/extbase/Classes/Mvc/Web/RequestBuilder.php#L147
Actions