FluidTYPO3 / vhs

TYPO3 extension VHS: Fluid ViewHelpers
https://fluidtypo3.org
Other
190 stars 229 forks source link

v:menu not working in v11 #1791

Closed jonashaas closed 1 year ago

jonashaas commented 2 years ago

i have a page with 3 subpages and the id 13

when i use

<v:menu pageUid="13" />

it throws this error: image

It worked fine in older versions

hhchrizzo commented 1 year ago

This should fix it

$content = $this->renderChildren(); - if (0 < mb_strlen(trim($content))) { + if (0 < mb_strlen(trim($content ?? ''))) {

NamelessCoder commented 1 year ago

Fixed in current development branch.