From 9b030fd174045b2ebcd87f005a15ef703a4168c6 Mon Sep 17 00:00:00 2001 From: brunoais Date: Sat, 7 Mar 2015 14:57:42 +0000 Subject: [PATCH] [ticket/13674] Missing space after "if" PHPBB3-13674 --- phpBB/phpbb/search/fulltext_native.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'];