removed unused 2nd param in call to _parse_var()

This commit is contained in:
messju
2004-04-16 10:31:43 +00:00
parent 984d2f36e6
commit 4d340b91c9

View File

@@ -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;