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

(-)a/C4/Matcher.pm (-2 / +1 lines)
Lines 44-50 C4::Matcher - find MARC records matching another one Link Here
44
  $matcher->add_matchpoint('isbn', 1000, [ { tag => '020', subfields => 'a', norms => [] } ]);
44
  $matcher->add_matchpoint('isbn', 1000, [ { tag => '020', subfields => 'a', norms => [] } ]);
45
45
46
  $matcher->add_simple_required_check('245', 'a', -1, 0, '', '245', 'a', -1, 0, '');
46
  $matcher->add_simple_required_check('245', 'a', -1, 0, '', '245', 'a', -1, 0, '');
47
  $matcher->add_required_check([ { tag => '245', subfields => 'a', norms => [] } ], 
47
  $matcher->add_required_check([ { tag => '245', subfields => 'a', norms => [] } ],
48
                               [ { tag => '245', subfields => 'a', norms => [] } ]);
48
                               [ { tag => '245', subfields => 'a', norms => [] } ]);
49
49
50
  my @matches = $matcher->get_matches($marc_record, $max_matches);
50
  my @matches = $matcher->get_matches($marc_record, $max_matches);
51
- 

Return to bug 18584