View | Details | Raw Unified | Return to bug 14148
Collapse All | Expand All

(-)a/tools/stage-marc-import.pl (-3 / +6 lines)
Lines 203-210 if ($completedJobID) { Link Here
203
    my @templates = GetModificationTemplates();
203
    my @templates = GetModificationTemplates();
204
    $template->param( MarcModificationTemplatesLoop => \@templates );
204
    $template->param( MarcModificationTemplatesLoop => \@templates );
205
205
206
    my @plugins = Koha::Plugins->new()->GetPlugins('to_marc');
206
    if ( C4::Context->preference('UseKohaPlugins') &&
207
    $template->param( plugins => \@plugins );
207
         C4::Context->config('enable_plugins') ) {
208
209
        my @plugins = Koha::Plugins->new()->GetPlugins('to_marc');
210
        $template->param( plugins => \@plugins );
211
    }
208
}
212
}
209
213
210
output_html_with_http_headers $input, $cookie, $template->output;
214
output_html_with_http_headers $input, $cookie, $template->output;
211
- 

Return to bug 14148