From 3f3db8cdaa8a8066ee0f727fe44699a179aca04e Mon Sep 17 00:00:00 2001 From: Ludovic Arnaud Date: Thu, 20 Jul 2006 21:26:54 +0000 Subject: [PATCH] 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 --- phpBB/includes/search/fulltext_native_improved.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }