From 9486a21bee8352fc3c747ede4e667d7e5e715e4b Mon Sep 17 00:00:00 2001 From: vAugagneur Date: Thu, 14 Jun 2012 09:03:44 +0000 Subject: [PATCH] [-] BO : fixed bug #PSCFV-2828 - Changing the default attribute : no refresh --- classes/Product.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/Product.php b/classes/Product.php index fc9d6de3c..09b76b8a4 100644 --- a/classes/Product.php +++ b/classes/Product.php @@ -1123,7 +1123,7 @@ class ProductCore extends ObjectModel $result &= ObjectModel::updateMultishopTable('product', array( 'cache_default_attribute' => (int)$id_product_attribute, - ), '`a.id_product` = '.(int)$this->id); + ), 'a.`id_product` = '.(int)$this->id); return $result; }