Bug #82887
closedAdditional parameters in content text editor when using link browser missing
0%
Description
As backenduser when setting a link in the text editor on a "text" content element I do:> Highlight text> Open link browser> go to "Page" tab> set additional link parameter ("¶m1=4")> select page of choice> save (link works w/parameter)
-> Open link browser with double click on the previously set link
Expected result:> The link browser displays the previously entered additional link parameter ("¶m1=4")> The link browser does not show the additional link parameters entered before
Current result:
Updated by Malte Koitka almost 7 years ago
Later I will add a PR if I find some free time. Quick fix for now:
typo3/sysext/recordlist/Classes/Controller/AbstractLinkBrowserController.php
In line ~315 (at the end of method initCurrentUrl) add:
if(isset($this->currentLinkParts['url']['parameters']) && !empty($this->currentLinkParts['url']['parameters'])) {
$this->linkAttributeValues['params'] = '&' . $this->currentLinkParts['url']['parameters'];
}
Updated by Riccardo De Contardi over 4 years ago
- Status changed from New to Needs Feedback
I am not able to reproduce this issue on 9.5.15 or latest master (10.4.0-dev), could you check it again?
Updated by Riccardo De Contardi over 4 years ago
- Status changed from Needs Feedback to Closed
I close this issue as solved (confirmed 9.5.15 and higher); if you think that this is the wrong decision or experience the issue again, please reopen it or ping me.
Version 8.7 has been marked as unsupported; if you still need support for that version, consider opting for Extended Long Term Support, a special service provided by TYPO3 GmbH (https://typo3.com/services/extended-support/)