Bug #68416
Recently merged fix for FLUIDTEMPLATE: New fallback paths miss stdWrap doesn't work correctly
| Status: | New | Start date: | 2015-07-21 | |
|---|---|---|---|---|
| Priority: | Should have | Due date: | ||
| Assigned To: | Loek Hilgersom | % Done: | 0% |
|
| Category: | Fluid | Spent time: | - | |
| Target version: | 7.4 (Backend) | |||
| TYPO3 Version: | 7 | Is Regression: | No | |
| PHP Version: | Sprint Focus: | |||
| Complexity: | no-brainer |
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
}
Related issues