diff options
author | David M <davidmj@users.sourceforge.net> | 2007-03-31 17:33:18 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2007-03-31 17:33:18 +0000 |
commit | 6e97ae1d460c75cb86347049d6926cfe440a5041 (patch) | |
tree | 1708a1fd71667570b063f42a521f9394370e7465 /phpBB/includes/search/fulltext_mysql.php | |
parent | 43f6f57262d18f7c33b7e699e2e4312a014c4fce (diff) | |
download | forums-6e97ae1d460c75cb86347049d6926cfe440a5041.tar forums-6e97ae1d460c75cb86347049d6926cfe440a5041.tar.gz forums-6e97ae1d460c75cb86347049d6926cfe440a5041.tar.bz2 forums-6e97ae1d460c75cb86347049d6926cfe440a5041.tar.xz forums-6e97ae1d460c75cb86347049d6926cfe440a5041.zip |
#5401
git-svn-id: file:///svn/phpbb/trunk@7252 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/search/fulltext_mysql.php')
-rw-r--r-- | phpBB/includes/search/fulltext_mysql.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/includes/search/fulltext_mysql.php b/phpBB/includes/search/fulltext_mysql.php index 506f53fbd3..7edfedc424 100644 --- a/phpBB/includes/search/fulltext_mysql.php +++ b/phpBB/includes/search/fulltext_mysql.php @@ -242,6 +242,7 @@ class fulltext_mysql extends search_backend mb_regex_encoding('UTF-8'); mb_ereg_search_init($text, '(?:[^\w*]|^)([+\-|]?(?:[\w*]+\'?)*[\w*])(?:[^\w*]|$)'); + $text = array(); while (($word = mb_ereg_search_regs())) { $text[] = $word[1]; |