diff options
author | David M <davidmj@users.sourceforge.net> | 2007-11-29 18:26:20 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2007-11-29 18:26:20 +0000 |
commit | 238395a91d642a0bd1ad5524c69fb4fbfc209b51 (patch) | |
tree | 483d110074f26782235d179e63babc849b73f0a4 /phpBB/includes/search | |
parent | f3fd02548a94825195e6946cacad8c8c339e50ca (diff) | |
download | forums-238395a91d642a0bd1ad5524c69fb4fbfc209b51.tar forums-238395a91d642a0bd1ad5524c69fb4fbfc209b51.tar.gz forums-238395a91d642a0bd1ad5524c69fb4fbfc209b51.tar.bz2 forums-238395a91d642a0bd1ad5524c69fb4fbfc209b51.tar.xz forums-238395a91d642a0bd1ad5524c69fb4fbfc209b51.zip |
#15524
git-svn-id: file:///svn/phpbb/trunk@8257 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/search')
-rw-r--r-- | phpBB/includes/search/fulltext_mysql.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/phpBB/includes/search/fulltext_mysql.php b/phpBB/includes/search/fulltext_mysql.php index 91d70d074e..1cd28fc6d2 100644 --- a/phpBB/includes/search/fulltext_mysql.php +++ b/phpBB/includes/search/fulltext_mysql.php @@ -54,6 +54,7 @@ class fulltext_mysql extends search_backend if (function_exists('mb_ereg')) { $this->mbstring_regex = true; + mb_regex_encoding('UTF-8'); } $error = false; @@ -152,7 +153,6 @@ class fulltext_mysql extends search_backend } else if ($this->mbstring_regex) { - mb_regex_encoding('UTF-8'); mb_ereg_search_init($split_keywords, '(?:[^\w*"()]|^)([+\-|]?(?:[\w*"()]+\'?)*[\w*"()])(?:[^\w*"()]|$)'); while (($word = mb_ereg_search_regs())) @@ -285,7 +285,6 @@ class fulltext_mysql extends search_backend } else if ($this->mbstring_regex) { - mb_regex_encoding('UTF-8'); mb_ereg_search_init($text, '(?:[^\w*]|^)([+\-|]?(?:[\w*]+\'?)*[\w*])(?:[^\w*]|$)'); $text = array(); |