mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
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
This commit is contained in:
parent
d20997f5bc
commit
3f3db8cdaa
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue