From 0afe72e9cebb5257be6a49504490af5a9bcbb9cd Mon Sep 17 00:00:00 2001 From: Joe Atzberger Date: Mon, 16 Jun 2008 22:15:26 -0500 Subject: [PATCH] Bugfix patron search for cards/labels related to pagination. Pagination was working for searching, but the "type" and batch_id were not making it onto subsequent pages (i.e., the 2nd page of "B" names). This corrects the problem with the base URL passed to pagination_bar. Signed-off-by: Joshua Ferraro --- labels/pcard-member-search.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/labels/pcard-member-search.pl b/labels/pcard-member-search.pl index 484ff31506..63a4c51422 100755 --- a/labels/pcard-member-search.pl +++ b/labels/pcard-member-search.pl @@ -135,7 +135,8 @@ my $base_url = { term => 'member', val => $member }, { term => 'orderby', val => $orderby }, { term => 'resultsperpage', val => $resultsperpage }, - { term => 'type', val => 'intranet' }, + { term => 'type', val => $batch_type }, + { term => 'batch_id', val => $batch_id }, ) ); -- 2.39.2