Przeglądaj źródła

Fix logs pagination (#5403)

* Fix logs pagination
Regression from https://github.com/FreshRSS/FreshRSS/pull/5269

* Add better default
Alexandre Alapetite 2 lat temu
rodzic
commit
c8d2ead763
2 zmienionych plików z 3 dodań i 3 usunięć
  1. 2 2
      app/views/index/logs.phtml
  2. 1 1
      lib/Minz/Paginator.php

+ 2 - 2
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'); ?>
 
 
 

+ 1 - 1
lib/Minz/Paginator.php

@@ -49,7 +49,7 @@ class Minz_Paginator {
 	 * @param string $view nom du fichier de vue situé dans /app/views/helpers/
 	 * @param string $getteur variable de type $_GET[] permettant de retrouver la page
 	 */
-	public function render(string $view, string $getteur = '0'): void {
+	public function render(string $view, string $getteur = 'page'): void {
 		$view = APP_PATH . '/views/helpers/' . $view;
 
 		if (file_exists($view)) {