fix pagination offset

This commit is contained in:
ghost 2024-02-14 14:45:58 +02:00
parent c2b49634d0
commit 6aaa1da03e

View File

@ -102,7 +102,7 @@ class MainController extends AbstractController
[ [
'time' => 'desc' 'time' => 'desc'
], ],
$request->get('part') > 1 ? (int) $request->get('part') * $this->getParameter('app.main.index.limit') : 0, $request->get('part') > 1 ? ((int) $request->get('part') - 1) * (int) $this->getParameter('app.main.index.limit') : 0,
$this->getParameter('app.main.index.limit') $this->getParameter('app.main.index.limit')
), ),
'title' => $this->_title( 'title' => $this->_title(