Je me réponds à moi-même car j'ai trouvé :
dans advanced_search_result.php :
Remplacer ceci :
Code
$where_str .= "(pd.products_name like '%" . tep_db_input($keyword) . "%' or p.products_model like '%" . tep_db_input($keyword) . "%' or m.manufacturers_name like '%" . tep_db_input($keyword) . "%'";
Par :
Code
$where_str .= "(pd.products_name REGEXP '[[:<:]]" . tep_db_input($keyword) . "[[:>:]]' or p.products_model REGEXP '[[:<:]]" . tep_db_input($keyword) . "[[:>:]]' or m.manufacturers_name REGEXP '[[:<:]]" . tep_db_input($keyword) . "[[:>:]]'";
if (isset($HTTP_GET_VARS['search_in_description']) && ($HTTP_GET_VARS['search_in_description'] == '1')) $where_str .= " or pd.products_description REGEXP '[[:<:]]" . tep_db_input($keyword) . "[[:>:]]'";
Ce code inclu également la recherche dans la description.