View | Details | Raw Unified | Return to bug 23846
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-1 / +1 lines)
Lines 71-77 Link Here
71
    [% IF decoding_error %]
71
    [% IF decoding_error %]
72
        <div>
72
        <div>
73
            There is an error with this bibliographic record, the view may be degraded.
73
            There is an error with this bibliographic record, the view may be degraded.
74
            <br/> Error: [% decoding_error %]
74
            <br/> Error: [% decoding_error | html %]
75
        </div>
75
        </div>
76
    [% END %]
76
    [% END %]
77
    [% IF ( ocoins ) %]
77
    [% IF ( ocoins ) %]
(-)a/opac/opac-detail.pl (-2 / +3 lines)
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
- 

Return to bug 23846