diff options
author | Dhruv Goel <dhruv.goel92@gmail.com> | 2012-06-26 01:27:14 +0530 |
---|---|---|
committer | Dhruv Goel <dhruv.goel92@gmail.com> | 2012-07-05 21:17:26 +0530 |
commit | bc699f66cf8c4f043f3b62da5e50c3acf198084e (patch) | |
tree | e2abcd16c47435465017eae2fb4da153c89513a3 /phpBB/search.php | |
parent | dfbd32ce24a1ecf5003d21f31949d3269145cc55 (diff) | |
download | forums-bc699f66cf8c4f043f3b62da5e50c3acf198084e.tar forums-bc699f66cf8c4f043f3b62da5e50c3acf198084e.tar.gz forums-bc699f66cf8c4f043f3b62da5e50c3acf198084e.tar.bz2 forums-bc699f66cf8c4f043f3b62da5e50c3acf198084e.tar.xz forums-bc699f66cf8c4f043f3b62da5e50c3acf198084e.zip |
[feature/postgresql-fulltext-search] fix formatting
adds proper spaces after control keywords and comment symbol
PHPBB3-9730
Diffstat (limited to 'phpBB/search.php')
-rw-r--r-- | phpBB/search.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/search.php b/phpBB/search.php index 0d13644b02..0187995f75 100644 --- a/phpBB/search.php +++ b/phpBB/search.php @@ -596,7 +596,7 @@ if ($keywords || $author || $author_id || $search_id || $submit) $u_search .= ($search_fields != 'all') ? '&sf=' . $search_fields : ''; $u_search .= ($return_chars != 300) ? '&ch=' . $return_chars : ''; - //check if search backend supports phrase search or not + // Check if search backend supports phrase search or not $l_phrase_search_disabled = ''; if (strpos(html_entity_decode($keywords), '"') !== false && isset($search->phrase_search)) { |