diff options
author | Andreas Fischer <bantu@phpbb.com> | 2015-06-09 21:27:07 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2015-06-09 21:27:07 +0200 |
commit | c952622fa007ecd0d69d479dd3afa6854d2e3599 (patch) | |
tree | 55a471b4efbfbebc9ceb29af8233806e7e6d701d /phpBB/phpbb/search/fulltext_sphinx.php | |
parent | 832c9f64e04ad22dce1d51e72f3c65df4894c0eb (diff) | |
parent | f9389995e72e7517668542d65f088b71e1c221f6 (diff) | |
download | forums-c952622fa007ecd0d69d479dd3afa6854d2e3599.tar forums-c952622fa007ecd0d69d479dd3afa6854d2e3599.tar.gz forums-c952622fa007ecd0d69d479dd3afa6854d2e3599.tar.bz2 forums-c952622fa007ecd0d69d479dd3afa6854d2e3599.tar.xz forums-c952622fa007ecd0d69d479dd3afa6854d2e3599.zip |
Merge pull request #3694 from marc1706/ticket/13930
[ticket/13930] Check for correct spacing between keyword & parenthesis
* marc1706/ticket/13930:
[ticket/13930] Add missing spaces to code
[ticket/13930] Use OpeningParenthesisSniff in legacy ruleset
[ticket/13930] Remove not needed return statements
[ticket/13930] Add missing spaces to code
[ticket/13930] Check for correct spacing between keyword & parenthesis
Diffstat (limited to 'phpBB/phpbb/search/fulltext_sphinx.php')
-rw-r--r-- | phpBB/phpbb/search/fulltext_sphinx.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/search/fulltext_sphinx.php b/phpBB/phpbb/search/fulltext_sphinx.php index fddd1c39d1..cd7add72f0 100644 --- a/phpBB/phpbb/search/fulltext_sphinx.php +++ b/phpBB/phpbb/search/fulltext_sphinx.php @@ -146,7 +146,7 @@ class fulltext_sphinx // Initialize \phpbb\db\tools object $this->db_tools = new \phpbb\db\tools($this->db); - if(!$this->config['fulltext_sphinx_id']) + if (!$this->config['fulltext_sphinx_id']) { set_config('fulltext_sphinx_id', unique_id()); } |