aboutsummaryrefslogtreecommitdiff
path: root/app/views
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2023-05-15 15:21:17 +0200
committerGravatar GitHub <noreply@github.com> 2023-05-15 15:21:17 +0200
commitc8d2ead7635e58a5c78d95a9b9a1a74e99a1bcef (patch)
tree48a8bb16211f14a03ed242de510e8b8508b5b699 /app/views
parent360400b7230e14b4684bebb35ca9b68edf3d7e22 (diff)
Fix logs pagination (#5403)
* Fix logs pagination Regression from https://github.com/FreshRSS/FreshRSS/pull/5269 * Add better default
Diffstat (limited to 'app/views')
-rw-r--r--app/views/index/logs.phtml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/index/logs.phtml b/app/views/index/logs.phtml
index 42be022d6..896a19765 100644
--- a/app/views/index/logs.phtml
+++ b/app/views/index/logs.phtml
@@ -14,7 +14,7 @@
?>
<?php if (!empty($items)) { ?>
- <?php $this->logsPaginator->render('logs_pagination.phtml'); ?>
+ <?php $this->logsPaginator->render('logs_pagination.phtml', 'page'); ?>
<div id="loglist-wrapper" class="table-wrapper">
<table id="loglist">
<thead>
@@ -41,7 +41,7 @@
</tbody>
</table>
</div>
- <?php $this->logsPaginator->render('logs_pagination.phtml'); ?>
+ <?php $this->logsPaginator->render('logs_pagination.phtml', 'page'); ?>