// Fixed missing parameters when calling Currency::exists

This commit is contained in:
bMancone
2012-02-20 09:22:15 +00:00
parent 1c4162ff2e
commit 85f3df042f
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -115,7 +115,7 @@ class CurrencyCore extends ObjectModel
*/
public function add($autodate = true, $nullValues = false)
{
return Currency::exists($this->iso_code) ? false : parent::add();
return Currency::exists($this->iso_code, $this->iso_code_num) ? false : parent::add();
}
/**
+2 -2
View File
@@ -243,7 +243,7 @@ class LocalizationPackCore
foreach ($xml->currencies->currency as $data)
{
$attributes = $data->attributes();
if (Currency::exists($attributes['iso_code']))
if (Currency::exists($attributes['iso_code'], (int)$attributes['iso_code_num']))
continue;
$currency = new Currency();
$currency->name = (string)$attributes['name'];
@@ -260,7 +260,7 @@ class LocalizationPackCore
$this->_errors[] = Tools::displayError('Invalid currency properties.');
return false;
}
if (!Currency::exists($currency->iso_code))
if (!Currency::exists($currency->iso_code, $currency->iso_code_num))
{
if (!$currency->add())
{