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

(-)a/Koha/Patron.pm (-1 / +14 lines)
Lines 2188-2193 sub decoded_secret { Link Here
2188
    return $self->secret;
2188
    return $self->secret;
2189
}
2189
}
2190
2190
2191
=head2 update_lastseen
2192
2193
    $patron->update_lastseen();
2194
2195
    Patron method to update lastseen field in borrower
2196
    to record that patron has been seen via sip connection
2197
2198
=cut
2199
2200
sub update_lastseen {
2201
    my ( $self ) = @_;
2202
    $self->track_login;
2203
}
2204
2191
=head2 Internal methods
2205
=head2 Internal methods
2192
2206
2193
=head3 _type
2207
=head3 _type
2194
- 

Return to bug 34893