Bug #100070
closedInvalid HTML a tag generation in due to missing quote DatabaseRecordList
100%
Description
All titles are broken in our list view.
default: // Output the label now: if ($table === 'pages') { $code = '<a href="' . htmlspecialchars( $this->listURL((string)$uid, '', 'pointer') ) . '>' . $code . '</a>'; } else { $code = $this->linkUrlMail($code, $origCode); }
Should be
default: // Output the label now: if ($table === 'pages') { $code = '<a href="' . htmlspecialchars( $this->listURL((string)$uid, '', 'pointer') ) . '">' . $code . '</a>'; } else { $code = $this->linkUrlMail($code, $origCode); }
Generated code is :<a href="/typo3/module/web/list?token=TOKEN&id=13910&table=>Crops - folder</a>
should be:
Generated code is :<a href="/typo3/module/web/list?token=TOKEN&id=13910&table=">Crops - folder</a>
Breaking change was done in: https://github.com/TYPO3-CMS/recordlist/commit/2829fb9c44b27a3f285620ff2b02480bfb0d3814
Updated by Gerrit Code Review over 1 year ago
- Status changed from New to Under Review
Patch set 1 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/78013
Updated by Nikita Hovratov over 1 year ago
- Related to Task #94762: Introduce ModuleStateStorage replacing fsMod added
Updated by Gerrit Code Review over 1 year ago
Patch set 1 for branch 11.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/+/78015
Updated by Joey Bouten over 1 year ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset e8aeab7a9ec2354ead1490eadd26d8bc830a0f6d.