From a3d18d3861a67000f6b877209419c1bdb14ce3c6 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Tue, 22 Aug 2017 16:41:46 +0200 Subject: [PATCH] Bug 19163: [COUNTERPATCH] Adjust script instead of template Content-Type: text/plain; charset=utf-8 See previous patch. --- tools/stage-marc-import.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/stage-marc-import.pl b/tools/stage-marc-import.pl index c845060..07a921f 100755 --- a/tools/stage-marc-import.pl +++ b/tools/stage-marc-import.pl @@ -57,7 +57,7 @@ my $item_action = $input->param('item_action'); my $comments = $input->param('comments'); my $record_type = $input->param('record_type'); my $encoding = $input->param('encoding') || 'UTF-8'; -my $format = $input->param('format') || 'MARC'; +my $format = $input->param('format') || 'ISO2709'; my $marc_modification_template = $input->param('marc_modification_template_id'); my ( $template, $loggedinuser, $cookie ) = get_template_and_user( @@ -91,7 +91,7 @@ if ($completedJobID) { my ( $errors, $marcrecords ); if( $format eq 'MARCXML' ) { ( $errors, $marcrecords ) = C4::ImportBatch::RecordsFromMARCXMLFile( $file, $encoding); - } elsif( $format eq 'MARC' ) { + } elsif( $format eq 'ISO2709' ) { ( $errors, $marcrecords ) = C4::ImportBatch::RecordsFromISO2709File( $file, $record_type, $encoding ); } else { # plugin based $errors = []; -- 2.1.4