Actions
Bug #90835
closedError in form elements HTML rendering
Start date:
2020-03-26
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
10
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Hi,
In the backend, there is several missing space when rendering element like input (from the TCA).
For example, with an input text element we have:
'<input type="' . $inputType . '"' . GeneralUtility::implodeAttributes($attributes, true) . ' />';
And without the error :
'<input type="' . $inputType . '" ' . GeneralUtility::implodeAttributes($attributes, true) . ' />';
Thanks
Updated by Gerrit Code Review over 4 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/63926
Updated by Gerrit Code Review over 4 years ago
Patch set 1 for branch 9.5 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/63897
Updated by Eric Chavaillaz over 4 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 7a46aa1648c8a7575b189772ea48f005a136383c.
Actions