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

(-)a/Koha/Patrons/Import.pm (-2 / +1 lines)
Lines 231-237 sub import_patrons { Link Here
231
        # Remove warning for int datatype that cannot be null
231
        # Remove warning for int datatype that cannot be null
232
        # Argument "" isn't numeric in numeric eq (==) at /usr/share/perl5/DBIx/Class/Row.pm line 1018
232
        # Argument "" isn't numeric in numeric eq (==) at /usr/share/perl5/DBIx/Class/Row.pm line 1018
233
        for my $field (
233
        for my $field (
234
            qw( privacy privacy_guarantor_fines privacy_guarantor_checkouts anonymized ))
234
            qw( privacy privacy_guarantor_fines privacy_guarantor_checkouts anonymized login_attempts ))
235
        {
235
        {
236
            delete $borrower{$field}
236
            delete $borrower{$field}
237
              if exists $borrower{$field} and $borrower{$field} eq "";
237
              if exists $borrower{$field} and $borrower{$field} eq "";
238
- 

Return to bug 24379