Actions
Bug #79918
closedOpening links in pop-up windows no longer works
Start date:
2017-02-20
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
8
PHP Version:
7.0
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Stabilization Sprint
Description
After the rewrite of Css Styled Content, it's no longer possible to open links in pop up windows.
How to replicate.- Create a link
- Set a external link
- Set 500x500 as target
Expected behaviour is that the link opens in a new pop-up window with size 500x500. But currently the link just opens in a new tab.
The reason is that the typoscript was rewritten so that parameter.data = parameters:allParams
was changed to parameter.data = parameters:href
. This means that the link target doesn't get parsed by to resolveMixedLinkParameter
, which means that TypoLinkCodecService->decode
won't return the correct target.
Actions