Lines 433-443
sub batch_info {
Link Here
|
433 |
$template->param('current_matcher_description' => $matcher->description()); |
433 |
$template->param('current_matcher_description' => $matcher->description()); |
434 |
} |
434 |
} |
435 |
} |
435 |
} |
436 |
add_matcher_list($batch->{'matcher_id'}); |
436 |
add_matcher_list($template,$batch->{'matcher_id'}); |
437 |
} |
437 |
} |
438 |
|
438 |
|
439 |
sub add_matcher_list { |
439 |
sub add_matcher_list { |
440 |
my $current_matcher_id = shift; |
440 |
my ($template,$current_matcher_id) = @_; |
441 |
my @matchers = C4::Matcher::GetMatcherList(); |
441 |
my @matchers = C4::Matcher::GetMatcherList(); |
442 |
if (defined $current_matcher_id) { |
442 |
if (defined $current_matcher_id) { |
443 |
for (my $i = 0; $i <= $#matchers; $i++) { |
443 |
for (my $i = 0; $i <= $#matchers; $i++) { |
444 |
- |
|
|