From 30b94c8f005880ec258055b024ee04bf5dedd4a2 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 15 Jan 2026 15:26:57 -0500 Subject: [PATCH] Bug 41574: (follow-up) Fixing syntax error and wrong variable name Signed-off-by: Owen Leonard --- .../intranet-tmpl/prog/en/modules/patroncards/edit-batch.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/edit-batch.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/edit-batch.tt index 75a853704ee..5f515853bb5 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/edit-batch.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/edit-batch.tt @@ -273,7 +273,7 @@ } location.href = `/cgi-bin/koha/patroncards/print.pl?batch_id=${batch_id}&${getstr}`; } else if (mode == 'batch') { - location.href = `/cgi-bin/koha/patroncards/print.pl?batch_id=${batch_id`; + location.href = `/cgi-bin/koha/patroncards/print.pl?batch_id=${batch_id}`; } else { // some pass-through error trapping just in case... } @@ -319,7 +319,7 @@ order: [[0, "asc"]], pagingType: "full", lengthMenu: [aLengthMenu, aLengthMenuLabel], - pageLength: patronsPerPage, + pageLength: prefs.PatronsPerPage, autoWidth: false, }); $("#additems").click(function(){ -- 2.39.5