From 603e6cf5905e36af0106e26074f678daf054cab9 Mon Sep 17 00:00:00 2001 From: Ludovic Arnaud Date: Sat, 15 Jul 2006 15:46:56 +0000 Subject: [PATCH] Fixed: no need to pad CJK and Hangul anymore git-svn-id: file:///svn/phpbb/trunk@6183 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/search/fulltext_native_improved.php | 6 +++--- 1 file 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; }