From 7e6ceb83e360076ea2e6e653026f3e44d4135834 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Tue, 13 Jan 2026 17:47:28 +0100 Subject: [PATCH] show 3 pages left and right of current page in pager --- views/bootstrap4/class.Bootstrap4.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/bootstrap4/class.Bootstrap4.php b/views/bootstrap4/class.Bootstrap4.php index dde6f0399..74d01f42c 100644 --- a/views/bootstrap4/class.Bootstrap4.php +++ b/views/bootstrap4/class.Bootstrap4.php @@ -1049,7 +1049,7 @@ background-image: linear-gradient(to bottom, #882222, #111111);; function pageList($pageNumber, $totalPages, $baseURI, $params, $dataparams=[]) { /* {{{ */ $maxpages = 25; // skip pages when more than this is shown - $range = 2; // pages left and right of current page + $range = 3; // pages left and right of current page if (!is_numeric($pageNumber) || !is_numeric($totalPages) || $totalPages<2) { return; }