Qual: Fixed typo

This commit is contained in:
Raphaël Doursenaud 2014-04-23 15:24:09 +02:00
parent b6312d1efd
commit 43606c8ac4

View File

@ -703,7 +703,7 @@ class Translate
*/
function getCurrencyAmount($currency_code, $amount)
{
$symbol=$this->getCurrencSymbol($currency_code);
$symbol=$this->getCurrencySymbol($currency_code);
if (in_array($currency_code, array('USD'))) return $symbol.$amount;
else return $amount.$symbol;