@@ -, +, @@ --------- -- the end should have messages about security vunerabilities because CGI param is used in a list context. -- this time, those security warnings should be gone. -- if you see an oAuth error, that's because you have no authority records and the search failed as a result. --- opac/opac-authorities-home.pl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) --- a/opac/opac-authorities-home.pl +++ a/opac/opac-authorities-home.pl @@ -59,12 +59,12 @@ foreach my $thisauthtype ( } if ( $op eq "do_search" ) { - my @marclist = ($query->param('marclist')); - my @and_or = ($query->param('and_or')); - my @excluding = ($query->param('excluding'),); - my @operator = ($query->param('operator')); - my $orderby = $query->param('orderby'); - my @value = ($query->param('value') || "",); + my @marclist = $query->multi_param('marclist'); + my @and_or = $query->multi_param('and_or'); + my @excluding = $query->multi_param('excluding'); + my @operator = $query->multi_param('operator'); + my $orderby = $query->param('orderby'); + my @value = $query->multi_param('value'); $resultsperpage = $query->param('resultsperpage'); $resultsperpage = 20 if ( !defined $resultsperpage ); --