diff options
author | Dhruv <dhruv.goel92@gmail.com> | 2015-01-28 21:41:24 +0530 |
---|---|---|
committer | Dhruv <dhruv.goel92@gmail.com> | 2015-01-28 21:41:24 +0530 |
commit | 252018b8131debcbcd67cec33cd0abaa7e83b7d6 (patch) | |
tree | d65fb855676563bd85cc358c2291b5a576b203aa /phpBB/phpbb/search | |
parent | 1c6ebcf02b2110556c811e8549e2079afab5ec7b (diff) | |
parent | be90e9745242dbfa26aa7ebfbe41c80114a4baad (diff) | |
download | forums-252018b8131debcbcd67cec33cd0abaa7e83b7d6.tar forums-252018b8131debcbcd67cec33cd0abaa7e83b7d6.tar.gz forums-252018b8131debcbcd67cec33cd0abaa7e83b7d6.tar.bz2 forums-252018b8131debcbcd67cec33cd0abaa7e83b7d6.tar.xz forums-252018b8131debcbcd67cec33cd0abaa7e83b7d6.zip |
Merge branch 'ticket/12933-olympus' into ticket/12933
Diffstat (limited to 'phpBB/phpbb/search')
-rw-r--r-- | phpBB/phpbb/search/fulltext_native.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/search/fulltext_native.php b/phpBB/phpbb/search/fulltext_native.php index 8865d37712..93ea46ca60 100644 --- a/phpBB/phpbb/search/fulltext_native.php +++ b/phpBB/phpbb/search/fulltext_native.php @@ -300,7 +300,7 @@ class fulltext_native extends \phpbb\search\base $this->search_query = $keywords; $exact_words = array(); - preg_match_all('#([^\\s+\\-|*()]+)(?:$|[\\s+\\-|()])#u', $keywords, $exact_words); + preg_match_all('#([^\\s+\\-|()]+)(?:$|[\\s+\\-|()])#u', $keywords, $exact_words); $exact_words = $exact_words[1]; $common_ids = $words = array(); |