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

(-)a/C4/Auth.pm (-2 / +1 lines)
Lines 1811-1817 sub checkpw { Link Here
1811
    }
1811
    }
1812
1812
1813
    # INTERNAL AUTH
1813
    # INTERNAL AUTH
1814
    @return = checkpw_internal( $dbh, $userid, $password, $no_set_userenv) unless @return;
1814
    @return = checkpw_internal( $dbh, $userid, $password, $no_set_userenv) unless @return && $return[0];
1815
1815
1816
    if ( $return[0] == 0 ) {
1816
    if ( $return[0] == 0 ) {
1817
        $patron->update({ login_attempts => $patron->login_attempts + 1 }) if $patron;
1817
        $patron->update({ login_attempts => $patron->login_attempts + 1 }) if $patron;
1818
- 

Return to bug 18953