aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/search/fulltext_native.php
diff options
context:
space:
mode:
authorbrunoais <brunoaiss@gmail.com>2015-03-07 14:57:42 +0000
committerbrunoais <brunoaiss@gmail.com>2015-03-07 14:57:42 +0000
commit9b030fd174045b2ebcd87f005a15ef703a4168c6 (patch)
treec43a3c84bdc96349482f5a2b36f4075cbca21fea /phpBB/phpbb/search/fulltext_native.php
parentf4c423cea19858f9fa17e26f9c7447030f0ad8a0 (diff)
downloadforums-9b030fd174045b2ebcd87f005a15ef703a4168c6.tar
forums-9b030fd174045b2ebcd87f005a15ef703a4168c6.tar.gz
forums-9b030fd174045b2ebcd87f005a15ef703a4168c6.tar.bz2
forums-9b030fd174045b2ebcd87f005a15ef703a4168c6.tar.xz
forums-9b030fd174045b2ebcd87f005a15ef703a4168c6.zip
[ticket/13674] Missing space after "if"
PHPBB3-13674
Diffstat (limited to 'phpBB/phpbb/search/fulltext_native.php')
-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 4dd1512fa4..4d02dd1cbf 100644
--- a/phpBB/phpbb/search/fulltext_native.php
+++ b/phpBB/phpbb/search/fulltext_native.php
@@ -824,7 +824,7 @@ class fulltext_native extends \phpbb\search\base
}
// if using mysql and the total result count is not calculated yet, get it from the db
- if(!$total_results && $is_mysql)
+ if (!$total_results && $is_mysql)
{
// Also count rows for the query as if there was not LIMIT. Add SQL_CALC_FOUND_ROWS to SQL
$sql_array['SELECT'] = 'SQL_CALC_FOUND_ROWS ' . $sql_array['SELECT'];