- Allow to parse array and objects in Smarty Template
This commit is contained in:
gmorel
2013-09-09 19:22:07 +02:00
parent ffe6280213
commit 6b6dc1c800

View File

@@ -102,7 +102,7 @@ class SmartyParser extends Smarty implements ParserInterface
public static function theliaEscape($content, $smarty)
{
if(!is_object($content)) {
if(is_scalar($content)) {
return htmlspecialchars($content ,ENT_QUOTES, Smarty::$_CHARSET);
} else {
return $content;