Actions
Bug #104544
closedTypoScript cache of nested Site Sets are not unique in Frontend
Start date:
2024-08-02
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
13
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
If a set extends another set by depending on it and changing some TypoScript:
typo3conf/ext/mysite/Configuration/Sets/ExtendingSite/config.yaml
name: my/extending-site
label: 'My Extending Site'
dependencies:
- typo3/styleguide
typo3conf/ext/mysite/Configuration/Sets/ExtendingSite/setup.typoscript
page >
page = PAGE
page.1 = TEXT
page.1.value = FOOBAR
then the frontend will create a TypoScript cache and apply that to sites that either use the set my/extending-site
or typo3/styleguide
while the sets are actually different.
The backend TypoScript analyzer does not suffer from this.
Credits to @Tomek W for finding this bug.
Actions