Actions
Bug #101636
closedappendString does not respect round bracket
Status:
Resolved
Priority:
Should have
Assignee:
-
Category:
TypoScript
Target version:
-
Start date:
2023-08-09
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
12
PHP Version:
8.2
Tags:
Complexity:
medium
Is Regression:
Sprint Focus:
On Location Sprint
Description
I tried to us appendString to add SQL in sitemap config.
additionalWhere := appendString( AND `uid` NOT IN (48,10,50))
but in Version 12 the string is cut after the first closing round bracket in 'Active Typoscript viewer' and the SQL is incorrect:
additionalWhere = {#no_index} = 0 AND {#canonical_link} = '' AND uid NOT IN (48,10,50
This worked in Version 10.
plugin.tx_seo.config { xmlSitemap { sitemaps { pages { config { additionalWhere := appendString( AND `uid` NOT IN (48,10,50)) } } } } }
Actions