1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 03:54:10 +01:00

[ticket/11179] remove extra & in function call

PHPBB3-11179
This commit is contained in:
Dhruv 2013-01-25 18:15:55 +05:30
parent 38bb7dca31
commit 1ee4702ec5

View File

@ -579,7 +579,7 @@ class phpbb_search_fulltext_mysql extends phpbb_search_base
// try reading the results from cache
$result_count = 0;
if ($this->obtain_ids($search_key, $result_count, $id_ary, &$start, $per_page, $sort_dir) == SEARCH_RESULT_IN_CACHE)
if ($this->obtain_ids($search_key, $result_count, $id_ary, $start, $per_page, $sort_dir) == SEARCH_RESULT_IN_CACHE)
{
return $result_count;
}