@@ -, +, @@ --- Koha/Patron.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/Koha/Patron.pm +++ a/Koha/Patron.pm @@ -192,6 +192,7 @@ sub store { } $self->trim_whitespaces; + $self->updated_on( dt_from_string ); unless ( $self->in_storage ) { #AddMember @@ -261,7 +262,7 @@ sub store { my $info; my $from_storage = $self_from_storage->unblessed; my $from_object = $self->unblessed; - my @skip_fields = (qw/lastseen/); + my @skip_fields = (qw/lastseen updated_on/); for my $key ( keys %{$from_storage} ) { next if any { /$key/ } @skip_fields; if ( --