From 5691f15ccfcad25fde6fe5136b877d05dec5b125 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Tue, 11 Jun 2024 12:29:13 +0000 Subject: [PATCH] Bug 37057: Restore filtering of unused authorities Bug 12478 commented this code out, however, we do return the 'used' parameter in ES authority searches. While we should implement the feature for both ES and Zebra as an index, we can restore this behaviour here. To test: 1 - Search authorities on OPAC with SearchEngine syspref set to both Elasticsearch and Zebra I just searched for 'a' 2 - Confirm results with no usage are included 3 - Test with both values of OPACShowUnusedAuthorities 4 - Apply patch 5 - Repeat searches with both engines and syspref settings 6 - Confirm unused authorities not shown in either engine when syspref is "Don't show" 7 - Conifrm unused authorities shown in both engines when syspref is "Show" --- opac/opac-authorities-home.pl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/opac/opac-authorities-home.pl b/opac/opac-authorities-home.pl index 9e617485d2f..bddcdc01150 100755 --- a/opac/opac-authorities-home.pl +++ b/opac/opac-authorities-home.pl @@ -129,8 +129,6 @@ if ( $op eq "do_search" ) { } } - $template->param( result => $results ) if $results; - $template->param( pagination_bar => pagination_bar( $base_url, int( $total / $resultsperpage ) + 1, @@ -142,11 +140,13 @@ if ( $op eq "do_search" ) { ); unless (C4::Context->preference('OPACShowUnusedAuthorities')) { -# TODO implement usage counts -# my @usedauths = grep { $_->{used} > 0 } @$results; -# $results = \@usedauths; +# TODO implement usage counts in the indexes to filter during searching + my @usedauths = grep { $_->{used} > 0 } @$results; + $results = \@usedauths; } + $template->param( result => $results ) if $results; + # Opac search history if (C4::Context->preference('EnableOpacSearchHistory')) { if ( $startfrom == 1) { -- 2.39.2