[*] Core: Upgrade smarty to version 3.1.3

This commit is contained in:
rGaillard
2011-10-19 15:16:52 +00:00
parent 978ba64d17
commit 30b74705e7
128 changed files with 24059 additions and 13 deletions
+2 -2
View File
@@ -2006,7 +2006,7 @@ class ProductCore extends ObjectModel
*/
public static function convertPrice($params, &$smarty)
{
return Tools::displayPrice($params['price'], $smarty->ps_currency);
return Tools::displayPrice($params['price'], Context::getContext()->currency);
}
/**
@@ -2025,7 +2025,7 @@ class ProductCore extends ObjectModel
public static function displayWtPrice($params, &$smarty)
{
return Tools::displayPrice($params['p'], $smarty->ps_currency);
return Tools::displayPrice($params['p'], Context::getContext()->currency);
}
/**