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

(-)a/C4/Auth.pm (-1 / +1 lines)
Lines 1786-1791 sub checkpw { Link Here
1786
1786
1787
    my @return;
1787
    my @return;
1788
    my $patron = Koha::Patrons->find({ userid => $userid });
1788
    my $patron = Koha::Patrons->find({ userid => $userid });
1789
    $patron = Koha::Patrons->find({ cardnumber => $userid }) unless $patron;
1789
    my $check_internal_as_fallback = 0;
1790
    my $check_internal_as_fallback = 0;
1790
    my $passwd_ok = 0;
1791
    my $passwd_ok = 0;
1791
    # Note: checkpw_* routines returns:
1792
    # Note: checkpw_* routines returns:
1792
- 

Return to bug 22692