Around line 110, in /admin/model/localisation/currency.php
Code: Select all
$this->db->query("UPDATE " . DB_PREFIX . "currency SET value = '" . (float)$value . "', date_modified = NOW() WHERE code = '" . (int)$currency . "'");
You can just delete (int) or replace to (string)to fix.