Actions
Bug #98108
closedRegression with nested parameter for typolink
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Site Handling, Site Sets & Routing
Target version:
Start date:
2022-08-09
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
11
PHP Version:
7.4
Tags:
Complexity:
Is Regression:
Yes
Sprint Focus:
Description
Typolink change in https://review.typo3.org/c/Packages/TYPO3.CMS/+/74576
introduced a regression when handling nested parameter for typolink
for example:
'parameter.' => [
'cObject' => 'TEXT',
'cObject.' => [
'value' => 'https://typo3.com _blank some-class test-title' // or fetch data from some field in TYPO3 CE etc
],
]
Result is instead of href="https://typo3.com", whole typolink will be returned i.e. href="https://typo3.com _blank some-class test-title"
Same result when you would like use resultLast options "url" or "result".
Typolink is not properly parsed due to double quoting around typolink, therefore breaking parser of typolink.
Actions