From 141bb554b2ffa036350bd0ab27d2520598f5ba9d 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 Signed-off-by: Alex Arnaud Signed-off-by: Jonathan Druart --- authorities/auth_finder.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authorities/auth_finder.pl b/authorities/auth_finder.pl index 4d6e61fc11..76f215bc4d 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_match') || undef, $query->param('value_any') || undef, - $query->param('value_match') || undef ); my $orderby = $query->param('orderby') || ''; my $startfrom = $query->param('startfrom') || 0; -- 2.20.1