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

(-)a/C4/ILSDI/Services.pm (-2 / +1 lines)
Lines 393-399 sub AuthenticatePatron { Link Here
393
    my ($cgi) = @_;
393
    my ($cgi) = @_;
394
    my $username = $cgi->param('username');
394
    my $username = $cgi->param('username');
395
    my $password = $cgi->param('password');
395
    my $password = $cgi->param('password');
396
    my ($status, $cardnumber, $userid) = C4::Auth::checkpw( C4::Context->dbh, $username, $password );
396
    my ($status, $cardnumber, $userid) = C4::Auth::checkpw( $username, $password );
397
    if ( $status == 1 ) {
397
    if ( $status == 1 ) {
398
        # Track the login
398
        # Track the login
399
        C4::Auth::track_login_daily( $userid );
399
        C4::Auth::track_login_daily( $userid );
400
- 

Return to bug 27342