BUGFIX: Fix TypoScript warning

Constants can't use multi line strings.
This commit is contained in:
Daniel Siepmann 2017-07-07 16:29:16 +02:00
parent 2cd5debf97
commit 9fff750e85

View file

@ -14,10 +14,7 @@ plugin {
# should also be added, together with additionalWhereClause
# based on doktypes
tt_content {
additionalWhereClause (
pages.doktype NOT IN (3, 199)
AND tt_content.CType NOT IN ('gridelements_pi1', 'list', 'div', 'menu', 'shortcut', 'search', 'login')
)
additionalWhereClause = pages.doktype NOT IN (3, 199) AND tt_content.CType NOT IN ('gridelements_pi1', 'list', 'div', 'menu', 'shortcut', 'search', 'login')
}
}
}