From 6c8e6be0eb355493d039bf45a3c6b58494ca3cba 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 --- svc/records/preview | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svc/records/preview b/svc/records/preview index 9e528e4378..81431f160f 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