Bug #76149
closedPagetree view for content elements when trying to add content element anchor links: Tooltip rendered as text via htmlspecialchars()
100%
Description
The bug occurs when you want to link a content element in the RTE with the "Insert Link" action int TYPO3 7.6.4. All elements which have titles/content which is too long used to be converted into a tooltip. Now the element is rendered as clear text.
The element is transformed into a tooltip at the following file location:
sysext/backend/Classes/Utility/BackendUtility.php:2256
if ($titleOrig != $title) { > $title = '<span title="' . $titleOrig . '">' . $title . '</span>'; }
Here its gets passed to htmlspecialchars():
sysext/recordlist/Classes/LinkHandler/PageLinkHandler.php:205
$out .= ' <li' . $selected . '> <span class="list-tree-group"> <span class="list-tree-icon"> ' . $icon . ' </span> <span class="list-tree-title"> <a href="#" class="t3js-pageLink" data-id="' . (int)$expPageId . '" data-anchor="#' . (int)$row['uid'] . '"> class="t3js-pageLink" ' . htmlspecialchars(BackendUtility::getRecordTitle('tt_content', $row, true, null, true)) . ' </a> </span> </span> </li> ';
Before:
After:
Files
Updated by Gerrit Code Review over 8 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/48106
Updated by Gerrit Code Review over 8 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/48106
Updated by Gerrit Code Review over 8 years ago
Patch set 1 for branch TYPO3_7-6 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/48207
Updated by Tomita Militaru over 8 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset aaa52bf30ff3bdc77afbaa50190a02e005403175.