From 5ca58dda42227e14dc6453b8b3f8e34218f48d38 Mon Sep 17 00:00:00 2001 From: Nahuel ANGELINETTI Date: Tue, 13 Jul 2010 11:58:01 +0200 Subject: [PATCH] [followup](bug #4931) fix forgottens input in buttons the previous patch missed an hidden input in next buttons that break next page. This fix it. --- .../intranet-tmpl/prog/en/modules/tools/inventory.tmpl | 10 ++++++---- tools/inventory.pl | 3 ++- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tmpl index df67ea28b6..0f79db93ce 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tmpl @@ -43,7 +43,7 @@ $(document).ready(function(){
-
+
Select items you want to check
  1. @@ -160,7 +160,7 @@ $(document).ready(function(){
- + " /> " /> @@ -199,7 +199,8 @@ $(document).ready(function(){ -
+ + " /> " /> " /> " /> @@ -212,7 +213,8 @@ $(document).ready(function(){
-
+ + " /> " /> " /> " /> diff --git a/tools/inventory.pl b/tools/inventory.pl index 2b91304308..fa1839c91e 100755 --- a/tools/inventory.pl +++ b/tools/inventory.pl @@ -109,7 +109,8 @@ $template->param(branchloop => \@branch_loop, maxlocation => $maxlocation, location=>$location, ignoreissued=>$ignoreissued, - branchcode=>$branchcode, + branchcode=>$branchcode, + branch=>$branch, offset => $offset, pagesize => $pagesize, datelastseen => $datelastseen, -- 2.39.5