1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-27 12:00:26 +02:00

[ticket/13674] Missing space after "if"

PHPBB3-13674
This commit is contained in:
brunoais
2015-03-07 14:57:42 +00:00
parent f4c423cea1
commit 9b030fd174

View File

@@ -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 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 // 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']; $sql_array['SELECT'] = 'SQL_CALC_FOUND_ROWS ' . $sql_array['SELECT'];