Actions
Bug #95479
closedImage URIs are not prefixed with absRefPrefix on cached pages
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
File Abstraction Layer (FAL)
Target version:
-
Start date:
2021-10-05
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
11
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Imagine the following scenario:
An uncached plugin renders an image via Fluid's <f:image> view helper.
The page is cached, but the plugin isn't, resulting in an <!--INT_SCRIPT> marker.
When the page is loaded for the first time, the image is shown fine:
<img src="/fileadmin/_processed_/b/f/myimage_xxxxxx.png">
When the page is refreshed it is pulled from the cache and the image is now missing.
TYPO3 missed adding the neccessary absRefPrefix:
<img src="fileadmin/_processed_/b/f/myimage_xxxxxx.png">
Actions