@@ -, +, @@ --- C4/Biblio.pm | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) --- a/C4/Biblio.pm +++ a/C4/Biblio.pm @@ -1256,11 +1256,11 @@ sub GetCOinSBiblio { $pubyear = substr $record->field('008')->data(), 7, 4; $isbn = $record->subfield( '773', 'z' ) || ''; $issn = $record->subfield( '773', 'x' ) || ''; -# if ($mtx eq 'journal') { + if ($mtx eq 'journal') { $title .= "&rft.title=" . (($record->subfield( '773', 't' ) || $record->subfield( '773', 'a'))); -# } else { -# $title .= "&rft.btitle=" . (($record->subfield( '773', 't' ) || $record->subfield( '773', 'a')) || ''); -# } + } else { + $title .= "&rft.btitle=" . (($record->subfield( '773', 't' ) || $record->subfield( '773', 'a')) || ''); + } foreach my $rel ($record->subfield( '773', 'g' )) { if ($pages) { $pages .= ', '; --