@@ -, +, @@ --- Koha/Patron.pm | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) --- a/Koha/Patron.pm +++ a/Koha/Patron.pm @@ -260,7 +260,9 @@ sub store { my $info; my $from_storage = $self_from_storage->unblessed; my $from_object = $self->unblessed; + my @skip_fields = (qw/lastseen/); for my $key ( keys %{$from_storage} ) { + next if any { /$key/ } @skip_fields; if ( ( !defined( $from_storage->{$key} ) @@ -294,11 +296,6 @@ sub store { ) ); } - else { - logaction( "MEMBERS", "MODIFY", $self->borrowernumber, - "NON-STANDARD FIELD CHANGED" ); - - } } # Final store --