X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=opac%2Fopac-authorities-home.pl;h=565622800f36e5b1749fe90f29b90b0c7df4e1ae;hb=223bf0099fcb837fb6bc1c719517e175c43f6ffc;hp=acff077caf08733abf31913961b845bd9c9b4c90;hpb=3195d20440eef3f3836a351a87ab50d7087534ec;p=koha.git diff --git a/opac/opac-authorities-home.pl b/opac/opac-authorities-home.pl index acff077caf..565622800f 100755 --- a/opac/opac-authorities-home.pl +++ b/opac/opac-authorities-home.pl @@ -58,12 +58,12 @@ foreach my $thisauthtype ( } if ( $op eq "do_search" ) { - my @marclist = ($query->param('marclista'),$query->param('marclistb'),$query->param('marclistc')); - my @and_or = ($query->param('and_ora'),$query->param('and_orb'),$query->param('and_orc')); - my @excluding = ($query->param('excludinga'),$query->param('excludingb'),$query->param('excludingc'),); - my @operator = ($query->param('operatora'),$query->param('operatorb'),$query->param('operatorc')); + 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('valuea') || "",$query->param('valueb') || "",$query->param('valuec') || "",); + my @value = ($query->param('value') || "",); $resultsperpage = $query->param('resultsperpage'); $resultsperpage = 20 if ( !defined $resultsperpage ); @@ -90,15 +90,7 @@ if ( $op eq "do_search" ) { $displaynext = 1; } - my @field_data = (); - - foreach my $letter (qw/a b c/){ - push @field_data, { term => "marclist$letter" , val => $query->param("marclist$letter") || ''}; - push @field_data, { term => "and_or$letter" , val => $query->param("and_or$letter") || ''}; - push @field_data, { term => "excluding$letter" , val => $query->param("excluding$letter") || ''}; - push @field_data, { term => "operator$letter" , val => $query->param("operator$letter") || ''}; - push @field_data, { term => "value$letter" , val => $query->param("value$letter") || ''}; - } + my @field_data = ( { term => "marclist" , val => $query->param("marclist") || ''} ); my @numbers = (); @@ -127,6 +119,10 @@ if ( $op eq "do_search" ) { else { $to = ( ( $startfrom + 1 ) * $resultsperpage ); } + unless (C4::Context->preference('OPACShowUnusedAuthorities')) { + my @usedauths = grep { $_->{used} > 0 } @$results; + $results = \@usedauths; + } $template->param( result => $results ) if $results; $template->param( FIELDS => \@fields ); $template->param( orderby => $orderby ); @@ -138,9 +134,11 @@ if ( $op eq "do_search" ) { startfromnext => $startfrom + 1, startfromprev => $startfrom - 1, searchdata => \@field_data, + countfuzzy => !(C4::Context->preference('OPACShowUnusedAuthorities')), total => $total, from => $from, to => $to, + resultcount => scalar @$results, numbers => \@numbers, authtypecode => $authtypecode, authtypetext => $authtypes->{$authtypecode}{'authtypetext'},