@@ -, +, @@ --- C4/Biblio.pm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- a/C4/Biblio.pm +++ a/C4/Biblio.pm @@ -1217,7 +1217,7 @@ sub GetCOinSBiblio { $subtitle = $record->subfield( '245', 'b' ) || ''; $title .= $subtitle; if ($titletype eq 'a') { - $pubyear = substr $record->field('008')->data(), 7, 4; + $pubyear = $record->field('008') && substr($pubyear->data(), 7, 4); $isbn = $record->subfield( '773', 'z' ) || ''; $issn = $record->subfield( '773', 'x' ) || ''; if ($mtx eq 'journal') { --