From 78541d12190e223898a145de590a1b8d6a697e09 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Mon, 12 Mar 2018 15:56:45 +0000 Subject: [PATCH] Bug 19582: (follow-up) get params in correct order We were ordering the values out of sync with the order of the mathclist param and so causing 'entire record' and 'all headings' to be reversed Signed-off-by: Nicolas Legrand --- authorities/auth_finder.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/authorities/auth_finder.pl b/authorities/auth_finder.pl index 4d6e61f..edd5357 100755 --- a/authorities/auth_finder.pl +++ b/authorities/auth_finder.pl @@ -64,8 +64,8 @@ if ( $op eq "do_search" ) { my @value = ( $query->param('value_mainstr') || undef, $query->param('value_main') || undef, - $query->param('value_any') || undef, - $query->param('value_match') || undef + $query->param('value_match') || undef, + $query->param('value_any') || undef ); my $orderby = $query->param('orderby') || ''; my $startfrom = $query->param('startfrom') || 0; -- 2.1.4