From 78c292ee6450e973d4866c2ac42753508431b3cb Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Tue, 26 Oct 2021 12:46:25 +0000 Subject: [PATCH] Bug 11175: (QA follow-up) Test message contents for analytics error Content-Type: text/plain; charset=utf-8 Signed-off-by: Marcel de Rooy --- Koha/Biblio.pm | 1 + catalogue/detail.pl | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Koha/Biblio.pm b/Koha/Biblio.pm index 6c7e39707e..2a1d67a993 100644 --- a/Koha/Biblio.pm +++ b/Koha/Biblio.pm @@ -510,6 +510,7 @@ sub get_marc_components { { type => 'error', message => 'component_search', + payload => $error, } ); } diff --git a/catalogue/detail.pl b/catalogue/detail.pl index 5caffefa0a..ce877a5674 100755 --- a/catalogue/detail.pl +++ b/catalogue/detail.pl @@ -201,7 +201,7 @@ my $show_analytics; if ( $showcomp eq 'both' || $showcomp eq 'staff' ) { if ( my $components = $biblio->get_marc_components(C4::Context->preference('MaxComponentRecords')) ) { $show_analytics = 1 if @{$components}; # just show link when having results - $template->param( analytics_error => 1 ) if @{$biblio->messages}; + $template->param( analytics_error => 1 ) if grep { $_->message eq 'component_search' } @{$biblio->messages}; my $parts; for my $part ( @{$components} ) { $part = C4::Search::new_record_from_zebra( 'biblioserver', $part ); -- 2.20.1