From 3167bf25f5c6fdd34cbf7cbf0a8307234c8cdb8e Mon Sep 17 00:00:00 2001 From: Nahuel ANGELINETTI Date: Wed, 26 Aug 2009 01:44:30 +0200 Subject: [PATCH] (bug #3453) fix authority search in opac this just set default values in opac search. Signed-off-by: Galen Charlton --- opac/opac-authorities-home.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opac/opac-authorities-home.pl b/opac/opac-authorities-home.pl index f06965d0aa..98f00ce2e7 100755 --- a/opac/opac-authorities-home.pl +++ b/opac/opac-authorities-home.pl @@ -61,7 +61,7 @@ if ( $op eq "do_search" ) { my @excluding = ($query->param('excludinga'),$query->param('excludingb'),$query->param('excludingc'),); my @operator = ($query->param('operatora'),$query->param('operatorb'),$query->param('operatorc')); my $orderby = $query->param('orderby'); - my @value = ($query->param('valuea'),$query->param('valueb'),$query->param('valuec'),); + my @value = ($query->param('valuea') || "",$query->param('valueb') || "",$query->param('valuec') || "",); $resultsperpage = $query->param('resultsperpage'); $resultsperpage = 20 if ( !defined $resultsperpage ); -- 2.39.2