Actions
Bug #97806
closedLinkhandler to translated records does not work on translated pages
Status:
Rejected
Priority:
Should have
Assignee:
-
Category:
Site Handling, Site Sets & Routing
Target version:
Start date:
2022-06-23
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
11
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
due to a wrong check, the link is not generated
following use cases
- Default content element
- Link to news in default language: works
- Link to news in 2nd language: works
- Translated content
- Link to news in default language: links to the translated news. IMO ok as otherwise after a translation the link would need to be adopted
- Link to news in 2nd language: doesn't work <== it's about this issue
Updated by Georg Ringer over 2 years ago
- Related to Bug #97777: linkhandler config.recordLinks for news plugin (as example) not working if news article is translated added
Updated by Georg Ringer over 2 years ago
- Status changed from Accepted to Rejected
too risky. the change I tried is in DatabaseRecordLinkBuilder to change
if (empty($overlay['_LOCALIZED_UID'])) {
to
if ($overlay !== null) {
Actions