|
if (!str_starts_with($url, 'view/content/')) { |
According to the message of this commit, the author wanted to exclude URLs containing /view/content :
The oppoisite is actually happening : only the URLs containing /view/content are included.
To fix this, remove the ! :
if (str_starts_with($url, 'view/content/')) {
continue;
}
NovaeZSEOBundle/bundle/Controller/SitemapController.php
Line 135 in 8304b2e
According to the message of this commit, the author wanted to exclude URLs containing
/view/content:The oppoisite is actually happening : only the URLs containing
/view/contentare included.To fix this, remove the
!: