Skip to content
Snippets Groups Projects
Commit 812d27ab authored by Torsten Oppermann's avatar Torsten Oppermann
Browse files

[TASk] Fixing wrong index of exlude from all domains array

parent bcea34ce
No related branches found
No related tags found
1 merge request!6Feature 4 3
......@@ -427,9 +427,9 @@ class BackendService {
}
// filter out excluded templates from all domains
if (isset($extensionConfiguration['excludeTemplatesFromAllDomains']) && $extensionConfiguration['excludeTemplatesFromAllDomains'] !== '') {
if (isset($extensionConfiguration['excludeTemplatesAllDomains']) && $extensionConfiguration['excludeTemplatesAllDomains'] !== '') {
$excludedTemplates = GeneralUtility::trimExplode(
',', $extensionConfiguration['excludeTemplates'], TRUE
',', $extensionConfiguration['excludeTemplatesAllDomains'], TRUE
);
foreach ($excludedTemplates as $excludedTemplate) {
list($extensionKey, $templateName) = GeneralUtility::trimExplode('.', $excludedTemplate);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment