Fixed: no need to pad CJK and Hangul anymore

git-svn-id: file:///svn/phpbb/trunk@6183 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Ludovic Arnaud 2006-07-15 15:46:56 +00:00
parent 5f88af1a75
commit 603e6cf590

View file

@ -1385,10 +1385,10 @@ class fulltext_native_improved extends search_backend
/**
* All characters within these ranges are valid
*
* We index all the characters separately and we pad them to make them
* long enough to be indexed
* We separate them with a space in order to index each character
* individually
*/
$ret .= ' chr' . $utf_char;
$ret .= ' ' . $utf_char;
continue;
}