Skip to content

Commit

Permalink
[TASK] Escape table columns (#5131)
Browse files Browse the repository at this point in the history
Releases: main, 13.4, 12.4
  • Loading branch information
simonschaufi authored Dec 5, 2024
1 parent 6d1963d commit acb294a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Documentation/ApiOverview/Seo/XmlSitemap.rst
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ backend.
pages {
config {
excludedDoktypes = 3, 4, 6, 7, 199, 254, 255, 137, 138
additionalWhere = AND (no_index = 0 OR no_follow = 0)
additionalWhere = AND ({#no_index} = 0 OR {#no_follow} = 0)
#rootPage = <optionally specify a different root page. (default: rootPageId from site configuration)>
excludePagesRecursive = <comma-separated list of page IDs>
}
Expand Down Expand Up @@ -141,7 +141,7 @@ following example shows how to add a sitemap for news records:
lastModifiedField = tstamp
changeFreqField = news_changefreq
priorityField = news_priority
additionalWhere = AND (no_index = 0 OR no_follow = 0)
additionalWhere = AND ({#no_index} = 0 OR {#no_follow} = 0)
pid = <page id('s) containing news records>
recursive = <number of subpage levels taken into account beyond the pid page. (default: 0)>
url {
Expand Down

0 comments on commit acb294a

Please sign in to comment.