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

(-)a/C4/Matcher.pm (-2 / +1 lines)
Lines 342-348 sub _store_matchpoint { Link Here
342
    foreach my $component (@{ $matchpoint->{'components'} }) {
342
    foreach my $component (@{ $matchpoint->{'components'} }) {
343
        $seqnum++;
343
        $seqnum++;
344
        $sth = $dbh->prepare_cached("INSERT INTO matchpoint_components 
344
        $sth = $dbh->prepare_cached("INSERT INTO matchpoint_components 
345
                                     (matchpoint_id, sequence, tag, subfields, offset, length)
345
                                     (matchpoint_id, sequence, tag, subfields, `offset`, length)
346
                                     VALUES (?, ?, ?, ?, ?, ?)");
346
                                     VALUES (?, ?, ?, ?, ?, ?)");
347
        $sth->bind_param(1, $matchpoint_id);
347
        $sth->bind_param(1, $matchpoint_id);
348
        $sth->bind_param(2, $seqnum);
348
        $sth->bind_param(2, $seqnum);
349
- 

Return to bug 33183