mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/13674] Missing space after "if"
PHPBB3-13674
This commit is contained in:
parent
f4c423cea1
commit
9b030fd174
1 changed files with 1 additions and 1 deletions
|
@ -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'];
|
||||||
|
|
Loading…
Add table
Reference in a new issue