// Fixed exceptions when saving products

This commit is contained in:
bMancone
2012-04-17 15:56:04 +00:00
parent 622b14e424
commit 5e55b74e15
5 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -574,7 +574,7 @@ class SearchCore
protected static function setProductsAsIndexed(&$products)
{
if (count($products))
ObjectModel::updateMultishopTable('Product', array('indexed' => 1), 'id_product IN ('.implode(',', $products).')');
ObjectModel::updateMultishopTable('Product', array('indexed' => 1), 'a.id_product IN ('.implode(',', $products).')');
}
/** $queryArray3 is automatically emptied in order to be reused immediatly */