From ee2ebb531cc9243984d1666e4abf7bb55362dc0d Mon Sep 17 00:00:00 2001 From: Matt Blenkinsop Date: Tue, 13 Jun 2023 13:36:13 +0000 Subject: [PATCH] Bug 33997: Stop track_login from updating borrowers.updated_on This patch blocks the update to borrowers.updated_on when track_login is called Test plan: 1) Enable syspref 'TrackLastPatronActivity' 2) Log into the OPAC 3) Check the database for the patron/account used and observe that the timestamps for updated_on and lastseen match 4) reset_all 5) Apply patch 6) Repeat steps one to three, the updated_on timestamp should not have changed --- Koha/Patron.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/Koha/Patron.pm b/Koha/Patron.pm index 2a8eecf9f6..e20eb6f966 100644 --- a/Koha/Patron.pm +++ b/Koha/Patron.pm @@ -1014,6 +1014,7 @@ sub track_login { return if !$params->{force} && !C4::Context->preference('TrackLastPatronActivity'); + $self->make_column_dirty('updated_on'); $self->lastseen( dt_from_string() )->store; } -- 2.30.2