From 1819689775b0951a568a50cb988c8260d8dd4c5f Mon Sep 17 00:00:00 2001 From: "Uwe.Tews" Date: Sun, 28 Feb 2010 13:51:57 +0000 Subject: [PATCH] - bugfix on double quote strings --- libs/sysplugins/smarty_internal_parsetree.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/sysplugins/smarty_internal_parsetree.php b/libs/sysplugins/smarty_internal_parsetree.php index 1f4cf4c8..bba83dba 100644 --- a/libs/sysplugins/smarty_internal_parsetree.php +++ b/libs/sysplugins/smarty_internal_parsetree.php @@ -97,7 +97,7 @@ class _smarty_doublequoted extends _smarty_parsetree { } } - $code = sprintf("(%s)", $code); +// $code = sprintf("(%s)", $code); return $code; } }