Actions
Bug #100070
closedInvalid HTML a tag generation in due to missing quote DatabaseRecordList
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Backend User Interface
Target version:
Start date:
2023-03-03
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
11
PHP Version:
8.0
Tags:
DatabaseRecordList
Complexity:
no-brainer
Is Regression:
Sprint Focus:
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
Actions