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

(-)a/C4/Auth.pm (-2 / +1 lines)
Lines 1319-1325 sub checkauth { Link Here
1319
        }
1319
        }
1320
1320
1321
        my $patron = Koha::Patrons->find({ userid => $userid });
1321
        my $patron = Koha::Patrons->find({ userid => $userid });
1322
        $patron->update_lastseen('login');
1322
        $patron->update_lastseen('login') if $patron;
1323
1323
1324
        # In case, that this request was a login attempt, we want to prevent that users can repost the opac login
1324
        # In case, that this request was a login attempt, we want to prevent that users can repost the opac login
1325
        # request. We therefore redirect the user to the requested page again without the login parameters.
1325
        # request. We therefore redirect the user to the requested page again without the login parameters.
1326
- 

Return to bug 35231