Actions
Bug #93587
closedFLUID f:form.button without "content" is not rendered validly (self closing)
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2021-02-24
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
10
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
FLUID f:form.button without "content" is not rendered validly.
Examples:
<f:form.button type="reset" name="buttonName" value="buttonValue"></f:form.button>
is renderd like:
<button type="reset" name="buttonName" value="buttonValue" />
But html-tag button is a not self-closing tag. So it should be like (with end-tag "</button>"):
<button type="reset" name="buttonName" value="buttonValue"></button>
Workaround:
add a "space" between <f:form.button> and closing </f:form.button>.
Files
Updated by Gerrit Code Review over 3 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/+/68109
Updated by Gerrit Code Review over 3 years ago
Patch set 1 for branch 10.4 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/68116
Updated by Oliver Bartsch over 3 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset bd1a4a5d3ce18cb4900c3838ce357bc9a36b2008.
Actions