From 19b11fb2f4168efe0e526345592d23e8c88994d4 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Fri, 13 Jan 2023 15:00:25 +0000 Subject: [PATCH] Bug 32631: Error when previewing record during batch record modification This patch corrects an error in the script which outputs MARC data for preview during batch record modification. To test, apply the patch and restart services. You will need at least one MARC modification template in your system. - 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. Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Lucas Gass --- svc/records/preview | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svc/records/preview b/svc/records/preview index 9e528e43786..81431f160f9 100755 --- a/svc/records/preview +++ b/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; -- 2.30.2