From 4d340b91c9b6c049a88d91e773f676187338fcb3 Mon Sep 17 00:00:00 2001 From: messju Date: Fri, 16 Apr 2004 10:31:43 +0000 Subject: [PATCH] removed unused 2nd param in call to _parse_var() --- libs/Smarty_Compiler.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/Smarty_Compiler.class.php b/libs/Smarty_Compiler.class.php index 163e1432..5270b20a 100644 --- a/libs/Smarty_Compiler.class.php +++ b/libs/Smarty_Compiler.class.php @@ -1703,7 +1703,7 @@ class Smarty_Compiler extends Smarty { } if($_has_math) { if(!empty($_complete_var) || is_numeric($_complete_var)) - $_output .= $this->_parse_var($_complete_var, true); + $_output .= $this->_parse_var($_complete_var); // get the modifiers working (only the last var from math + modifier is left) $var_expr = $_complete_var;