// 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();
}
/**