From 33e56ea20589b3ec4ed75c916d988472bfe7d774 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Mon, 16 Sep 2019 17:22:17 -0300 Subject: [PATCH] Bug 23627: Reduce Koha::Biblio->get_coins noise if no 245 Signed-off-by: Tomas Cohen Arazi Signed-off-by: Maryse Simard --- Koha/Biblio.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/Biblio.pm b/Koha/Biblio.pm index 0401268..1de0c6f 100644 --- a/Koha/Biblio.pm +++ b/Koha/Biblio.pm @@ -559,7 +559,7 @@ sub get_coins { push @authors, $au; } } - $title = $record->subfield( '245', 'a' ) . $record->subfield( '245', 'b' ); + $title = $record->subfield( '245', 'a' ) . ( $record->subfield( '245', 'b' ) // ''); if ($titletype eq 'a') { $pubyear = $record->field('008') || ''; $pubyear = substr($pubyear->data(), 7, 4) if $pubyear; -- 2.7.4