- Fresh D8.3
- Create 3 articles
- 1st node with title = Muller
- 2nd node with title = Müller
- 3rd node with title = Mueller
- Run cron to index content.
function MYMODULE_search_preprocess($text, $langcode = NULL) { if ($text == 'muller') { $text .= ' mueller'; } return $text; }
- Search for 'Muller'
- Search returns nothing
Expected behaviour: Search returns all 3 nodes that we created earlier.