mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
Merge pull request #635 from 3Dgoo/patch-2
FIX Ensure pagination start is not a negative number
This commit is contained in:
commit
53dc1df1aa
@ -457,7 +457,7 @@ class BlogController extends PageController
|
|||||||
$posts->setPageLength($pageSize);
|
$posts->setPageLength($pageSize);
|
||||||
|
|
||||||
// Set current page
|
// Set current page
|
||||||
$start = (int)$this->request->getVar($posts->getPaginationGetVar());
|
$start = max(0, (int)$this->request->getVar($posts->getPaginationGetVar()));
|
||||||
$posts->setPageStart($start);
|
$posts->setPageStart($start);
|
||||||
|
|
||||||
return $posts;
|
return $posts;
|
||||||
|
Loading…
Reference in New Issue
Block a user