diff options
author | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2006-07-20 21:26:54 +0000 |
---|---|---|
committer | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2006-07-20 21:26:54 +0000 |
commit | 3f3db8cdaa8a8066ee0f727fe44699a179aca04e (patch) | |
tree | 718a18c297e965089b63e0c5c23a7e7d8c3590f2 /phpBB/includes/search | |
parent | d20997f5bcd72581d1a6a03709529ff11503ee23 (diff) | |
download | forums-3f3db8cdaa8a8066ee0f727fe44699a179aca04e.tar forums-3f3db8cdaa8a8066ee0f727fe44699a179aca04e.tar.gz forums-3f3db8cdaa8a8066ee0f727fe44699a179aca04e.tar.bz2 forums-3f3db8cdaa8a8066ee0f727fe44699a179aca04e.tar.xz forums-3f3db8cdaa8a8066ee0f727fe44699a179aca04e.zip |
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
Diffstat (limited to 'phpBB/includes/search')
-rw-r--r-- | phpBB/includes/search/fulltext_native_improved.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/search/fulltext_native_improved.php b/phpBB/includes/search/fulltext_native_improved.php index a01ccd64ed..b154f10839 100644 --- a/phpBB/includes/search/fulltext_native_improved.php +++ b/phpBB/includes/search/fulltext_native_improved.php @@ -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; } |