View | Details | Raw Unified | Return to bug 33997
Collapse All | Expand All

(-)a/Koha/Patron.pm (-1 / +1 lines)
Lines 1014-1019 sub track_login { Link Here
1014
    return if
1014
    return if
1015
        !$params->{force} &&
1015
        !$params->{force} &&
1016
        !C4::Context->preference('TrackLastPatronActivity');
1016
        !C4::Context->preference('TrackLastPatronActivity');
1017
    $self->make_column_dirty('updated_on');
1017
    $self->lastseen( dt_from_string() )->store;
1018
    $self->lastseen( dt_from_string() )->store;
1018
}
1019
}
1019
1020
1020
- 

Return to bug 33997