17 h.
15 h.
Bonsoir @esa
Remplacez cette fonction dans Product.php par celle-ci et dites-moi si vous avez toujours le pb svp:
Remplacez cette fonction dans Product.php par celle-ci et dites-moi si vous avez toujours le pb svp:
CODE
public function deleteSearchIndexes()
{
return (Db::getInstance()->execute('
DELETE
FROM `'._DB_PREFIX_.'search_index`
WHERE `id_product` = '.(int)$this->id
) && Db::getInstance()->execute('
DELETE sw
FROM `'._DB_PREFIX_.'search_word` sw
LEFT JOIN `'._DB_PREFIX_.'search_index` si
ON(sw.`id_word` = si.`id_word`)
WHERE si.`id_word` IS NULL
'));
}