fixed problem with math in certain LC_NUMERIC locales.

thanks to wiebren for providing problem+solution.
This commit is contained in:
messju
2005-12-19 00:12:18 +00:00
parent 2c2143711c
commit b471731ae9

View File

@@ -58,7 +58,7 @@ function smarty_function_math($params, &$smarty)
$smarty->trigger_error("math: parameter $key: is not numeric"); $smarty->trigger_error("math: parameter $key: is not numeric");
return; return;
} }
$equation = preg_replace("/\b$key\b/",$val, $equation); $equation = preg_replace("/\b$key\b/", " \$params['$key'] ", $equation);
} }
} }