Hello,
it would be nice if in 4.6 you change default Smarty delimeter form '{' to '{{' or '{%' sou we can use css or javascript code inside tpl without using '{ldelim}','{rdelim}'.
Posted 18 March 2017 - 03:11 PM #1
Hello,
it would be nice if in 4.6 you change default Smarty delimeter form '{' to '{{' or '{%' sou we can use css or javascript code inside tpl without using '{ldelim}','{rdelim}'.
Posted 19 March 2017 - 05:48 AM #2
Posted 20 March 2017 - 08:00 AM #3
Hello,
it would be nice if in 4.6 you change default Smarty delimeter form '{' to '{{' or '{%' sou we can use css or javascript code inside tpl without using '{ldelim}','{rdelim}'.
There is no need to use ldelim/ rdelim in 4.x versions. Just make sure that { and } symbols are not located on one line. E.g.
This will not work
function fn() { return false; }
This will work
function fn() { return false; }