From dfc3397f55a6bcc29d2e1601e275c8b44116562e Mon Sep 17 00:00:00 2001 From: Mike Javorski Date: Wed, 29 Nov 2023 11:32:06 -0800 Subject: [PATCH] Bugfix: Always show pagination controls on home page if offset > 0 If you have items_per_page+1 items in your list and delete the sole item on the second page, you would end up stuck without a way to navigate to the first page. --- src/templates/home.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/templates/home.tpl b/src/templates/home.tpl index 96af606..1881122 100644 --- a/src/templates/home.tpl +++ b/src/templates/home.tpl @@ -124,7 +124,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA {/foreach} - {if $myitems_count > $opt.items_per_page} + {if $myitems_count > $opt.items_per_page || $offset > 0}