Lines 90-96
if ($op eq "") {
Link Here
|
90 |
} elsif ($op eq "commit-batch") { |
90 |
} elsif ($op eq "commit-batch") { |
91 |
my $frameworkcode = $input->param('framework'); |
91 |
my $frameworkcode = $input->param('framework'); |
92 |
my $overlay_framework = $input->param('overlay_framework'); |
92 |
my $overlay_framework = $input->param('overlay_framework'); |
93 |
$overlay_framework = undef if $overlay_framework = '_USE_ORIG'; |
93 |
$overlay_framework = undef if $overlay_framework eq '_USE_ORIG'; |
94 |
try { |
94 |
try { |
95 |
my $job_id = Koha::BackgroundJob::MARCImportCommitBatch->new->enqueue( |
95 |
my $job_id = Koha::BackgroundJob::MARCImportCommitBatch->new->enqueue( |
96 |
{ |
96 |
{ |
97 |
- |
|
|