55 |
# Find the borrower by userid, card number, or email |
55 |
# Find the borrower by userid, card number, or email |
57 |
$search_results = Koha::Patrons->search( { -or => { userid => $username, cardnumber => $username } } ); |
57 |
$search_results = Koha::Patrons->search( { -or => { userid => $username, cardnumber => $username }, login_attempts => { '!=', Koha::Patron::ADMINISTRATIVE_LOCKOUT } } ); |
60 |
$search_results = Koha::Patrons->search( { -or => { email => $email, emailpro => $email, B_email => $email } } ); |
60 |
$search_results = Koha::Patrons->search( { -or => { email => $email, emailpro => $email, B_email => $email }, login_attempts => { '!=', Koha::Patron::ADMINISTRATIVE_LOCKOUT } } ); |