From 9ac2e77658341ae5d56b63960ff60fa0f06389c5 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Fri, 23 Mar 2018 17:12:13 +0000 Subject: [PATCH] Bug 20385: (follow-up) Assign blank instead of inappropraite value Signed-off-by: Alex Arnaud --- 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 2ddd165..b8f03cb 100644 --- a/Koha/SearchEngine/Elasticsearch/Search.pm +++ b/Koha/SearchEngine/Elasticsearch/Search.pm @@ -217,7 +217,7 @@ sub search_auth_compat { # with the record. It's not documented why this is the case, so # it's not reproduced here yet. my $authtype = $rs->single; - my $auth_tag_to_report = $authtype ? $authtype->auth_tag_to_report : $authtypecode; + my $auth_tag_to_report = $authtype ? $authtype->auth_tag_to_report : ""; my $marc = $self->json2marc($marc_json); my $mainentry = $marc->field($auth_tag_to_report); my $reported_tag; -- 2.7.4