https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22729 --- Comment #7 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- This should resolve the second prove: diff --git a/Koha/Patron.pm b/Koha/Patron.pm index 6a25d717c1..90c4f38853 100644 --- a/Koha/Patron.pm +++ b/Koha/Patron.pm @@ -752,7 +752,7 @@ sub track_login { return if !$params->{force} && !C4::Context->preference('TrackLastPatronActivity'); - $self->lastseen( dt_from_string() )->store; + $self->lastseen( dt_from_string() )->SUPER::store; } =head3 move_to_deleted Obviously, there is a relation with Koha::Patron's sub store too. Safe to say that it is not directly related to this patch. We should resolve it on a new report. Opened report 22741. -- You are receiving this mail because: You are watching all bug changes.