[RELEASE] Initial release
bmack
released this
26 Aug 11:35
[BUGFIX] Use static prefix as documented
The documentation says:
TCEMAIN.pages.slug.generatorOptions {
prefix = /wishlist/
}
but the code worked like this:
TCEMAIN.pages.slug {
prefix = /wishlist/
}
The bugfix makes it consistent in the
"generatorOptions" namespace, as this
option is fully related for the
generation of a URL. This way,
the documentation does not need adaption.
THE CORRECT WAY NOW IS THIS:
TCEMAIN.pages.slug.generatorOptions {
prefix = /wishlist/
}