Lines 845-852
$template->param(
Link Here
|
845 |
content_identifier_exists => $content_identifier_exists, |
845 |
content_identifier_exists => $content_identifier_exists, |
846 |
); |
846 |
); |
847 |
|
847 |
|
|
|
848 |
# Catch the exception as Koha::Biblio::Metadata->record can explode if the MARCXML is invalid |
848 |
# COinS format FIXME: for books Only |
849 |
# COinS format FIXME: for books Only |
849 |
$template->param( ocoins => $biblio->get_coins ); |
850 |
my $coins = eval { $biblio->get_coins }; |
|
|
851 |
$template->param( ocoins => $coins ); |
850 |
|
852 |
|
851 |
my ( $loggedincommenter, $reviews ); |
853 |
my ( $loggedincommenter, $reviews ); |
852 |
if ( C4::Context->preference('reviewson') ) { |
854 |
if ( C4::Context->preference('reviewson') ) { |
853 |
- |
|
|