Changed pagination item count in preorder to 25

This commit is contained in:
Frank Schubert
2022-10-25 17:40:34 +02:00
parent 413768bcec
commit 9d3c20d477

View File

@@ -30,7 +30,7 @@ class PreorderController extends mfBaseController {
// pagination defaults
$pagination = [];
$pagination['start'] = 0;
$pagination['count'] = 5;
$pagination['count'] = 25;
$pagination['maxItems'] = 0;
if(is_numeric($this->request->s)) {