hofff / contao-content-navigation

Navigation for Contao.
GNU Lesser General Public License v3.0
4 stars 3 forks source link

Warning: Undefined array key "subitems" #27

Open contaoacademy opened 1 year ago

contaoacademy commented 1 year ago

Template: hofff_content_nav_default.html

I fixed this by changing the template: from ...<?= $item['subitems'] ?>... to ... <?= (isset($item['subitems'])) ? $item['subitems'] : ''; ?>...