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

(-)a/acqui/addorderiso2709.pl (-3 / +2 lines)
Lines 425-435 sub batch_info { Link Here
425
                                              'current_matcher_description' => $matcher->description());
425
                                              'current_matcher_description' => $matcher->description());
426
        }
426
        }
427
    }
427
    }
428
    add_matcher_list($batch->{'matcher_id'});
428
    add_matcher_list($batch->{'matcher_id'}, $template);
429
}
429
}
430
430
431
sub add_matcher_list {
431
sub add_matcher_list {
432
    my $current_matcher_id = shift;
432
    my ($current_matcher_id, $template) = @_;
433
    my @matchers = C4::Matcher::GetMatcherList();
433
    my @matchers = C4::Matcher::GetMatcherList();
434
    if (defined $current_matcher_id) {
434
    if (defined $current_matcher_id) {
435
        for (my $i = 0; $i <= $#matchers; $i++) {
435
        for (my $i = 0; $i <= $#matchers; $i++) {
436
- 

Return to bug 9432