From: Nick Clemens Date: Mon, 12 Mar 2018 15:56:45 +0000 (+0000) Subject: Bug 19582: (follow-up) get params in correct order X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=de3f658e9b35a93717d615aa79fb7fc85bcaeb88;p=koha.git 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 --- 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;