I have different outputs on Chrome based browsers and the Firefox browser?
I'm trying to reproduce the exact same example as shown here:
https://docs.cmsmadesimple.org/tags/use ... le-to-page
so after creating the UDT like
Code: Select all
$name = 'Mark';
$other_name = 'Goran';
$smarty->assign('name', $name);
$smarty->assign('other_name', $other_name);
Code: Select all
{my_udt}
<p>Howdy {$name}!<br />
Hello {$other_name}!</p>
However, in Chrome and Edge I only get:Howdy Mark!
Hello Goran!
The Smarty variables are empty in that case?!Howdy !
Hello !
How's that possible? Is that some browser based security setting I'm not aware of?
Can anybody reproduce this weird issue?