@@ -, +, @@ patron import --- Koha/Patrons/Import.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/Koha/Patrons/Import.pm +++ a/Koha/Patrons/Import.pm @@ -128,6 +128,7 @@ sub import_patrons { push @missing_criticals, { key => $key, line => $., lineraw => $borrowerline }; } else { + next if grep { $key eq $_ } ('date_renewed','flags','gonenoaddress','lastseen','login_attempts','lost','updated_on','privacy_guarantor_checkouts'); $borrower{$key} = ''; } } @@ -419,7 +420,6 @@ Returns an array of borrowers' table columns. sub set_column_keys { my ($self, $extended) = @_; - my @columnkeys = map { $_ ne 'borrowernumber' ? $_ : () } Koha::Patrons->columns(); push( @columnkeys, 'patron_attributes' ) if $extended; --