----
Hello,
In an attempt to create a multilingual version of a site within the same template, I'm using loads of custom content blocks such as
{content block="content_fr"}
The Search module doesn't seem to index them, though. Is there a way to do so?
Indexing seems to take place in Search.module.php around line 430
----
Solution
The problem was that words were sticked together by the search module when indexing.
In order to prevent so, I've modified Search.module.php at line 427
instead of appending words without separations
$text .= $v;
I used a space
$text .= $v." ";
... and it works. Don't know if it was a bug
