https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22729

--- Comment #7 from Marcel de Rooy <[email protected]> ---
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.
_______________________________________________
Koha-bugs mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to