Black
Black

Reputation: 20322

Fluid debugging - output all variables

I try to output all variables from my view like this:

<f:debug title="all"> {_all} </f:debug>

But I only get this output:

enter image description here

I used to get an array which I can open and inspect deeper.

Why does it render like this?

Upvotes: 6

Views: 9619

Answers (1)

Krystian Szymukowicz
Krystian Szymukowicz

Reputation: 1488

Plz remove the spaces before and after {_all}. You should have:

<f:debug title="all">{_all}</f:debug>

Upvotes: 17

Related Questions