Actions
Bug #75213
closedMissing Anchors for PDFs
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Frontend
Target version:
-
Start date:
2016-03-21
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
7
PHP Version:
5.5
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
Hi gang,
since I need anchors for (PDF-)Files in my current project I discoverd that section- and additionalParams-Tags are getting ignored when linking to a PDF-File.
I you can check it by creating a link to a PDF via RTE or you can test this fluid snip:
WORKS: <f:link.page pageUid="1" section="peter">test</<f:link.page> DOESNT: <f:link.page pageUid="file:1" section="peter">test</f:link.page> WORKS: <f:link.page pageUid="1" additionalParams="{test:'peter'}">test</<f:link.page> DOESNT: <f:link.page pageUid="file:1" additionalParams="{test:'peter'}">test</f:link.page> And if you think of typolink: WORKS: <f:link.typolink parameter="1" >test</f:link.typolink> DOESNT: <f:link.typolink parameter="file:1" additionalParams="&test=peter">test</f:link.typolink> ALSO DOESNT: <f:link.typolink parameter="file:1#peter">test</f:link.typolink>
Actions