You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 8, 2022. It is now read-only.
Multi site installations will only build the sitemap.xml of the first site.
The AbstractSitemapTask iterates over the root pages calling AbstractTask::initRootPage for each root page and subsequently buildSitemap. buildSitemap will then instantiate a Generator whose constructor will call GeneralUtility::getRootPid to get the root pid that was set when AbstractTask::initRootPage was called. This only works in the first iteration because GeneralUtility::getRootLine will be called in each iteration without specifying the uid meaning the cached CURRENT rootline will always be used regardless of the actual current pid.