From b6cbbb9cc34b5041d0fb1d225973b3b2abe9d60d Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 28 Aug 2015 11:29:23 +0100 Subject: [PATCH] Bug 12478: Do not display the 'Show more' links if no more facet available --- Koha/SearchEngine/Elasticsearch/Search.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/SearchEngine/Elasticsearch/Search.pm b/Koha/SearchEngine/Elasticsearch/Search.pm index 56dec5a..afae911 100644 --- a/Koha/SearchEngine/Elasticsearch/Search.pm +++ b/Koha/SearchEngine/Elasticsearch/Search.pm @@ -406,7 +406,6 @@ sub _convert_facets { # We restrict to the most popular $limit results my $limit = ( $type eq $exp_facet ) ? 10 : 5; - $limit = $#{ $data->{terms} } if ( $limit > @{ $data->{terms} } ); my $facet = { type_id => $type . '_id', expand => $type, @@ -415,6 +414,7 @@ sub _convert_facets { "type_label_$type_to_label{$type}" => 1, type_link_value => $type, }; + $limit = $#{ $data->{terms} } if ( $limit > @{ $data->{terms} } ); foreach my $term ( @{ $data->{terms} }[ 0 .. $limit - 1 ] ) { my $t = $term->{term}; my $c = $term->{count}; -- 2.1.0