diff options
author | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2006-07-15 15:46:56 +0000 |
---|---|---|
committer | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2006-07-15 15:46:56 +0000 |
commit | 603e6cf5905e36af0106e26074f678daf054cab9 (patch) | |
tree | c3e6c1bd49b536c73944c83a55fba54775e2c182 /phpBB | |
parent | 5f88af1a75b59125cd6675f7a76590cbd4deaaa2 (diff) | |
download | forums-603e6cf5905e36af0106e26074f678daf054cab9.tar forums-603e6cf5905e36af0106e26074f678daf054cab9.tar.gz forums-603e6cf5905e36af0106e26074f678daf054cab9.tar.bz2 forums-603e6cf5905e36af0106e26074f678daf054cab9.tar.xz forums-603e6cf5905e36af0106e26074f678daf054cab9.zip |
Fixed: no need to pad CJK and Hangul anymore
git-svn-id: file:///svn/phpbb/trunk@6183 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/search/fulltext_native_improved.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/search/fulltext_native_improved.php b/phpBB/includes/search/fulltext_native_improved.php index 7ca5dc6a43..dac964a64a 100644 --- a/phpBB/includes/search/fulltext_native_improved.php +++ b/phpBB/includes/search/fulltext_native_improved.php @@ -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; } |