Actions
Bug #68416
closedRecently merged fix for FLUIDTEMPLATE: New fallback paths miss stdWrap doesn't work correctly
Start date:
2015-07-21
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
7
PHP Version:
Tags:
Complexity:
no-brainer
Is Regression:
No
Sprint Focus:
Description
The way the currently merged fix is implemented it will only work like this:
templateRootPaths { 10 = filename.html 10.wrap = full/path/| }
This makes it hard to use other types of TS objects.
What it should do is this:
templateRootPaths { 10 = TEXT 10.value = filename.html 10.wrap = full/path/| }
Only using a value should also still work:
templateRootPaths { 10 = full/path/filename.html }
Updated by Susanne Moog over 9 years ago
- Target version changed from 7.4 (Backend) to 7.5
Updated by Benni Mack about 9 years ago
- Target version changed from 7.5 to 7 LTS
Updated by Loek Hilgersom about 9 years ago
This has been discussed at t3dd15, some people decided no further action is required. It's a matter of preferences, but this issue can be closed.
Updated by Markus Klein about 9 years ago
- Status changed from New to Closed
- Target version deleted (
7 LTS)
workaround if you really need cobj:
templateRootPaths { 10.cObject = TEXT 10.cObject.value = filename.html 10.cObject.wrap = full/path/| }
Actions