2.3.1
andybroomfield
released this
12 Jul 16:43
·
33 commits
to release-2.x
since this release
Important
This release makes a slight change to the Subsites navigation block, as there is a case of it failing when the overview page is unpublished.
You may get a Twig error on your navigation block if you have customised the template subsite-navigation.html.twig
.
This can be fixed by changing
{{ link(item.title, item.url) }}
to
{% if item.url is not empty %}
{{ link(item.title, item.url) }}
{% endif %}
What's Changed
- Fix PHP error on subsite page when overview is unpublished by @andybroomfield in #121
- Release 2.3.1 by @andybroomfield in #122
Full Changelog: 2.3.0...2.3.1