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

(-)a/Koha/Patrons/Import.pm (-2 / +1 lines)
Lines 199-205 sub import_patrons { Link Here
199
        }
199
        }
200
200
201
        # Check if the userid provided does not exist yet
201
        # Check if the userid provided does not exist yet
202
        if (  exists $borrower{userid}
202
        if (  $matchpoint ne 'userid' and exists $borrower{userid}
203
                 and $borrower{userid}
203
                 and $borrower{userid}
204
             and not Check_Userid( $borrower{userid}, $borrower{borrowernumber} ) ) {
204
             and not Check_Userid( $borrower{userid}, $borrower{borrowernumber} ) ) {
205
             push @errors, { duplicate_userid => 1, userid => $borrower{userid} };
205
             push @errors, { duplicate_userid => 1, userid => $borrower{userid} };
206
- 

Return to bug 12598