From 72d8a448554cc87d35bfcba2b1d08d034e524df7 Mon Sep 17 00:00:00 2001 From: vChabot Date: Wed, 16 May 2012 13:02:16 +0000 Subject: [PATCH] [-] BO : BugFix : #PSCFV-2373 : Created currency do not appear --- classes/Currency.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/classes/Currency.php b/classes/Currency.php index 14ca46f3d..abefd7a29 100644 --- a/classes/Currency.php +++ b/classes/Currency.php @@ -65,7 +65,8 @@ class CurrencyCore extends ObjectModel public static $definition = array( 'table' => 'currency', 'primary' => 'id_currency', - 'multilang_shop' => true, + 'multilang_shop' => true, + 'multishop' => true, 'fields' => array( 'name' => array('type' => self::TYPE_STRING, 'validate' => 'isGenericName', 'required' => true, 'size' => 32), 'iso_code' => array('type' => self::TYPE_STRING, 'validate' => 'isLanguageIsoCode', 'required' => true, 'size' => 3),