Skip to content

Commit

Permalink
Pagination of recent posts is via query, not post - thanks CrimeS for…
Browse files Browse the repository at this point in the history
… reporting
  • Loading branch information
emanuele45 committed Apr 22, 2016
1 parent 5a1838c commit 208e387
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/controllers/Recent.controller.php
Expand Up @@ -123,7 +123,7 @@ public function action_recent()
$this->_grabber = new Recent_Class($user_info['id']);

// Set or use a starting point for pagination
$this->_start = $this->_req->getPost('start', 'intval', 0);
$this->_start = $this->_req->getQuery('start', 'intval', 0);

// Recent posts by category id's
if (!empty($this->_req->query->c) && empty($board))
Expand Down

0 comments on commit 208e387

Please sign in to comment.