aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/search
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2015-01-30 13:34:40 +0100
committerAndreas Fischer <bantu@phpbb.com>2015-01-30 13:34:40 +0100
commitb6786f8ba10434603e630f0962dcf6384ade32a0 (patch)
treeb0879ba78fefae3229efd86161f7fc96e75b791b /phpBB/phpbb/search
parentc130165bfa06412752836e8715602836c18874d5 (diff)
parent5f237a042605f46e1fa9546b2ccf6916687f5820 (diff)
downloadforums-b6786f8ba10434603e630f0962dcf6384ade32a0.tar
forums-b6786f8ba10434603e630f0962dcf6384ade32a0.tar.gz
forums-b6786f8ba10434603e630f0962dcf6384ade32a0.tar.bz2
forums-b6786f8ba10434603e630f0962dcf6384ade32a0.tar.xz
forums-b6786f8ba10434603e630f0962dcf6384ade32a0.zip
Merge branch 'prep-release-3.0.13' into prep-release-3.1.3
* prep-release-3.0.13: [prep-release-3.0.13] Correct changelog link to 3.0.13 changes. [prep-release-3.0.13] Also update version in references to files. [prep-release-3.0.13] Add changelog for 3.0.13-PL1 release. [prep-release-3.0.13] Get rid of roman numbers in CHANGELOG.html. [prep-release-3.0.13] Bump version numbers for 3.0.13-PL1 release. [ticket/13549] Do not exit when ORIG_PATH_INFO just contains SCRIPT_NAME. [ticket/12933] Handle case when * is last character of word [ticket/13554] Show feature release upgrades in blue rather than red. Conflicts: build/build.xml phpBB/adm/style/acp_update.html phpBB/docs/CHANGELOG.html phpBB/docs/INSTALL.html phpBB/includes/constants.php phpBB/includes/startup.php phpBB/install/database_update.php phpBB/install/schemas/schema_data.sql tests/security/trailing_path_test.php
Diffstat (limited to 'phpBB/phpbb/search')
-rw-r--r--phpBB/phpbb/search/fulltext_native.php2
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();