Hi, I have variable that in PHP controller looks like
$data['content']['mods']['HTML-FORM-END']['html']
It is passed nicely in smarty, but when I try to show it any of these ways, it shows either 0 (assumes minus as operator and does some math), or says "unrecognized tag"
{$data.content.mods.HTML-FORM-BEGIN.html}
{$data.content.mods['HTML-FORM-BEGIN']['html']}
{$data.content.mods.HTML-FORM-BEGIN
.html}
{$data.content.mods.HTML-FORM-BEGIN.html
}
How can i print it without renaming array key in controller?