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

(-)a/C4/Auth.pm (-2 / +1 lines)
Lines 1772-1778 sub checkpw { Link Here
1772
1772
1773
    if ( $patron and $patron->account_locked ) {
1773
    if ( $patron and $patron->account_locked ) {
1774
        # Nothing to check, account is locked
1774
        # Nothing to check, account is locked
1775
    } elsif ($ldap) {
1775
    } elsif ($ldap && defined($password)) {
1776
        $debug and print STDERR "## checkpw - checking LDAP\n";
1776
        $debug and print STDERR "## checkpw - checking LDAP\n";
1777
        my ( $retval, $retcard, $retuserid ) = checkpw_ldap(@_);    # EXTERNAL AUTH
1777
        my ( $retval, $retcard, $retuserid ) = checkpw_ldap(@_);    # EXTERNAL AUTH
1778
        if ( $retval == 1 ) {
1778
        if ( $retval == 1 ) {
1779
- 

Return to bug 20879