@@ -, +, @@ using the original framework - Create a bibliographic record and specify a framework (not the default - Use the Batch records modification tools to modify it. --- tools/batch_record_modification.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/tools/batch_record_modification.pl +++ a/tools/batch_record_modification.pl @@ -192,7 +192,8 @@ if ( $op eq 'form' ) { my $error = eval { my $record = GetMarcBiblio( $biblionumber ); ModifyRecordWithTemplate( $mmtid, $record ); - ModBiblio( $record, $biblionumber ); + my $frameworkcode = C4::Biblio::GetFrameworkCode( $biblionumber ); + ModBiblio( $record, $biblionumber, $frameworkcode ); }; if ( $error and $error != 1 or $@ ) { # ModBiblio returns 1 if everything as gone well push @messages, { --