diff options
author | Dhruv <dhruv.goel92@gmail.com> | 2012-11-10 15:44:16 +0100 |
---|---|---|
committer | Dhruv <dhruv.goel92@gmail.com> | 2013-02-19 00:52:48 +0530 |
commit | ef88edbcf69541bd79e220c87c444b33a6751c67 (patch) | |
tree | 369b18e5db31a14b7479ad04f3892151ac759b86 /phpBB/includes/search/fulltext_postgres.php | |
parent | 2cb48f034153038d71d89ab58904cd048b8524d9 (diff) | |
download | forums-ef88edbcf69541bd79e220c87c444b33a6751c67.tar forums-ef88edbcf69541bd79e220c87c444b33a6751c67.tar.gz forums-ef88edbcf69541bd79e220c87c444b33a6751c67.tar.bz2 forums-ef88edbcf69541bd79e220c87c444b33a6751c67.tar.xz forums-ef88edbcf69541bd79e220c87c444b33a6751c67.zip |
[ticket/11179] correct start param in author search of postgres
PHPBB3-11179
Diffstat (limited to 'phpBB/includes/search/fulltext_postgres.php')
-rw-r--r-- | phpBB/includes/search/fulltext_postgres.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/phpBB/includes/search/fulltext_postgres.php b/phpBB/includes/search/fulltext_postgres.php index d968a934f4..e8a5353b05 100644 --- a/phpBB/includes/search/fulltext_postgres.php +++ b/phpBB/includes/search/fulltext_postgres.php @@ -583,6 +583,11 @@ class phpbb_search_fulltext_postgres extends phpbb_search_base $author_name, ))); + if ($start < 0) + { + $start = 0; + } + // 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) @@ -725,6 +730,20 @@ class phpbb_search_fulltext_postgres extends phpbb_search_base $this->db->sql_transaction('commit'); + if ($start >= $result_count) + { + $start = floor(($result_count - 1) / $per_page) * $per_page; + } + + $result = $this->db->sql_query_limit($sql, $this->config['search_block_size'], $start); + while ($row = $this->db->sql_fetchrow($result)) + { + $id_ary[] = (int) $row[$field]; + } + $this->db->sql_freeresult($result); + + $id_ary = array_unique($id_ary); + if (sizeof($id_ary)) { $this->save_ids($search_key, '', $author_ary, $result_count, $id_ary, $start, $sort_dir); |