Changed: add a space both before AND after Hangul and CJK characters so that they are never part of another word

git-svn-id: file:///svn/phpbb/trunk@6197 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Ludovic Arnaud 2006-07-20 21:26:54 +00:00
parent d20997f5bc
commit 3f3db8cdaa

View file

@ -1383,7 +1383,7 @@ class fulltext_native_improved extends search_backend
* We separate them with a space in order to index each character
* individually
*/
$ret .= ' ' . $utf_char;
$ret .= ' ' . $utf_char . ' ';
continue;
}