diff options
author | Dhruv <dhruv.goel92@gmail.com> | 2013-01-25 18:15:55 +0530 |
---|---|---|
committer | Dhruv <dhruv.goel92@gmail.com> | 2013-02-19 00:52:56 +0530 |
commit | 1ee4702ec51ecfc7d40c8768ba7927439c73002c (patch) | |
tree | 147b66e783aec042838212a06f0b99696ce37f31 /phpBB/includes/search | |
parent | 38bb7dca31740f9d4f188b75167f736ee6666c2f (diff) | |
download | forums-1ee4702ec51ecfc7d40c8768ba7927439c73002c.tar forums-1ee4702ec51ecfc7d40c8768ba7927439c73002c.tar.gz forums-1ee4702ec51ecfc7d40c8768ba7927439c73002c.tar.bz2 forums-1ee4702ec51ecfc7d40c8768ba7927439c73002c.tar.xz forums-1ee4702ec51ecfc7d40c8768ba7927439c73002c.zip |
[ticket/11179] remove extra & in function call
PHPBB3-11179
Diffstat (limited to 'phpBB/includes/search')
-rw-r--r-- | phpBB/includes/search/fulltext_mysql.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/search/fulltext_mysql.php b/phpBB/includes/search/fulltext_mysql.php index 4dc62753aa..adaf025730 100644 --- a/phpBB/includes/search/fulltext_mysql.php +++ b/phpBB/includes/search/fulltext_mysql.php @@ -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; } |