[-] BO : FixBug #PSCFV-8234 Products tags not correctly indexed in search

This commit is contained in:
Jérôme Nadaud
2013-07-18 12:15:42 +02:00
parent 108bd92c3b
commit 69066361a6
2 changed files with 23 additions and 0 deletions
+8
View File
@@ -571,6 +571,14 @@ class SearchCore
return true;
}
public static function removeProductsSearchIndex($products)
{
if (count($products)) {
Db::getInstance()->execute('DELETE FROM '._DB_PREFIX_.'search_index WHERE id_product IN ('.implode(',', $products).')');
ObjectModel::updateMultishopTable('Product', array('indexed' => 0), 'a.id_product IN ('.implode(',', $products).')');
}
}
protected static function setProductsAsIndexed(&$products)
{
if (count($products))