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

(-)a/C4/ImportBatch.pm (-2 / +4 lines)
Lines 688-694 sub BatchCommitItems { Link Here
688
688
689
    my $dbh = C4::Context->dbh;
689
    my $dbh = C4::Context->dbh;
690
690
691
    my ( $num_items_added, $num_items_errored, $num_items_replaced ) = 0;
691
    my $num_items_added = 0;
692
    my $num_items_errored = 0;
693
    my $num_items_replaced = 0;
694
692
    my $sth = $dbh->prepare( "
695
    my $sth = $dbh->prepare( "
693
        SELECT import_items_id, import_items.marcxml, encoding
696
        SELECT import_items_id, import_items.marcxml, encoding
694
        FROM import_items
697
        FROM import_items
695
- 

Return to bug 7131