Hello,
Thank for your fix, but it does not correct my problem.
I do some investigation and I found that :
The content plugin get the words in this tables :
content
sections
catégories
I openned phpmyadmin and I look this tables and I see for the "à" word.
I notice that in columns : title, title_alias and name, the "à" is save as an "à"... So no problem for that !
But in the description, introtext and fulltext columns are in HTML format. So the "à" word is encoded in HTML format which is : à
So when the plugin give this word, it see a word with a length of "8"...
I'm not expert in php, but for fix that you should put in the plugin content file a function decodeHTML() which it translate à symbol in the "à" word :
For example :
$stag.= " ".decodeHTML($row->fulltext);
I don't know if there is a native fonction in PHP for that...
Be careful ! There is other accent in french :
é -> é
è -> è
And also note that you should decode only HTML content... Not the titles...
I hope that it help you !
Gilles