From 56527c073ca95d3e6e00cccf4d21ec63673999ba Mon Sep 17 00:00:00 2001 From: Nahuel ANGELINETTI Date: Mon, 23 Mar 2009 13:02:14 +0100 Subject: [PATCH] (bug #3051) bad support of pagination in auth_finder This patch change the page to use GET instead of post, and use independants "input" names for searched values. Else the args are not passed to the next page due to rewrite rules. Signed-off-by: Galen Charlton Signed-off-by: Henri-Damien LAURENT --- authorities/auth_finder.pl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/authorities/auth_finder.pl b/authorities/auth_finder.pl index 763ec05982..717771ce9d 100755 --- a/authorities/auth_finder.pl +++ b/authorities/auth_finder.pl @@ -172,6 +172,9 @@ $template->param( index => $index, authtypesloop => \@authtypesloop, authtypecode => $authtypecode, + value_mainstr => $query->param('value_mainstr') || "", + value_main => $query->param('value_main') || "", + value_any => $query->param('value_any') || "", ); # Print the page -- 2.39.5