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

(-)a/Koha/Patrons/Import.pm (-1 / +1 lines)
Lines 268-274 LINE: while ( my $borrowerline = <$handle> ) { Link Here
268
        # Remove warning for int datatype that cannot be null
268
        # Remove warning for int datatype that cannot be null
269
        # Argument "" isn't numeric in numeric eq (==) at /usr/share/perl5/DBIx/Class/Row.pm line 1018
269
        # Argument "" isn't numeric in numeric eq (==) at /usr/share/perl5/DBIx/Class/Row.pm line 1018
270
        for my $field (
270
        for my $field (
271
            qw( privacy privacy_guarantor_fines privacy_guarantor_checkouts anonymized login_attempts checkprevcheckout)
271
            qw( privacy privacy_guarantor_fines privacy_guarantor_checkouts anonymized login_attempts checkprevcheckout autorenew_checkouts )
272
            )
272
            )
273
        {
273
        {
274
            delete $borrower{$field}
274
            delete $borrower{$field}
(-)a/t/db_dependent/Koha/Patrons/Import.t (-2 / +2 lines)
Lines 18-24 Link Here
18
# along with Koha; if not, see <http://www.gnu.org/licenses>.
18
# along with Koha; if not, see <http://www.gnu.org/licenses>.
19
19
20
use Modern::Perl;
20
use Modern::Perl;
21
use Test::More tests => 180;
21
use Test::More tests => 181;
22
use Test::NoWarnings;
22
use Test::Warn;
23
use Test::Warn;
23
use Test::Exception;
24
use Test::Exception;
24
use Encode qw( encode_utf8 );
25
use Encode qw( encode_utf8 );
25
- 

Return to bug 40380