diff options
author | Dhruv <dhruv.goel92@gmail.com> | 2012-11-12 13:43:13 +0100 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-11-27 08:48:15 -0500 |
commit | 6e8f142d3994f4568e40447d7cfd60cb5b082824 (patch) | |
tree | 409fe0de8f4d0805dc7a93152c9c4a522b677686 /phpBB/includes/search | |
parent | 764da977729aef331241d0cf0df77bd2e29d6256 (diff) | |
download | forums-6e8f142d3994f4568e40447d7cfd60cb5b082824.tar forums-6e8f142d3994f4568e40447d7cfd60cb5b082824.tar.gz forums-6e8f142d3994f4568e40447d7cfd60cb5b082824.tar.bz2 forums-6e8f142d3994f4568e40447d7cfd60cb5b082824.tar.xz forums-6e8f142d3994f4568e40447d7cfd60cb5b082824.zip |
[ticket/11174] removes unnecessary space from word
PHPBB3-11174
Diffstat (limited to 'phpBB/includes/search')
-rw-r--r-- | phpBB/includes/search/fulltext_mysql.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/search/fulltext_mysql.php b/phpBB/includes/search/fulltext_mysql.php index cd5f0cef67..ff2e24aa05 100644 --- a/phpBB/includes/search/fulltext_mysql.php +++ b/phpBB/includes/search/fulltext_mysql.php @@ -238,7 +238,7 @@ class phpbb_search_fulltext_mysql extends phpbb_search_base } else { - $tmp_split_words[] = $word . ' '; + $tmp_split_words[] = $word; } } if ($phrase) |