@@ -, +, @@ modification - Go to Cataloging -> Batch record modification - Submit a batch of bibliographic records - In the table of records that follows, click any "Show MARC" button. A modal window should appear with a preview of the modified record. --- svc/records/preview | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/svc/records/preview +++ a/svc/records/preview @@ -36,7 +36,7 @@ my $mmtid = $query->param('mmtid'); # Marc modification template id my $record; if ( $record_type eq 'biblio' ) { my $biblio = Koha::Biblios->find( $record_id ); - my $record = $biblio->metadata->record; + $record = $biblio->metadata->record; } else { my $authority = Koha::MetadataRecord::Authority->get_from_authid( $record_id ); $record = $authority->record; --