@@ -, +, @@ - run tests before, noise in plack-error log - apply patch - restart_all - run tests again, no Koha/Biblio noise after the restart - run qa test tools --- Koha/Biblio.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/Koha/Biblio.pm +++ a/Koha/Biblio.pm @@ -579,7 +579,8 @@ sub get_coins { push @authors, $au; } } - $title = $record->subfield( '245', 'a' ) . $record->subfield( '245', 'b' ); + $title = $record->subfield( '245', 'a' ) // q{}; + $title = $title . $record->subfield( '245', 'b' ) // q{}; if ($titletype eq 'a') { $pubyear = $record->field('008') || ''; $pubyear = substr($pubyear->data(), 7, 4) if $pubyear; --