php - Error in compiling product.tpl using smarty -
php - Error in compiling product.tpl using smarty -
i have tried compile this tpl file using smarty. php file this. beingness shown error message
( ! ) fatal error: uncaught --> smarty compiler: syntax error in template ".\templates\product.tpl" on line 94 "var doesntexist = '{l s='this combination not exist product. please take another.' js=1}';" unknown tag "l" <-- thrown in c:\wamp\www\smarty\libs\sysplugins\smarty_internal_templatecompilerbase.php on line 94
can please help me how prepare error?
the problem appears at:
var doesntexist = '{l s='this combination not exist product. please take another.' js=1}';
the question here l
- smarty function? if yes, appears it's not loaded , if should plain text reason, might seek putting {literal}
:
var doesntexist = '{literal}{l s='this combination not exist product. please take another.' js=1}{/literal}';
php css templates smarty smarty3
Comments
Post a Comment