Skip to content

[RELEASE] Initial release

Compare
Choose a tag to compare
@bmack bmack released this 26 Aug 11:35
· 57 commits to master since this release
[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/
    }