Skip to content

2.3.1

Compare
Choose a tag to compare
@andybroomfield andybroomfield released this 12 Jul 16:43
· 33 commits to release-2.x since this release
f0304cb

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

Full Changelog: 2.3.0...2.3.1