@@ -, +, @@ allow patrons to use their library card number in addition to username --- opac/opac-password-recovery.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/opac/opac-password-recovery.pl +++ a/opac/opac-password-recovery.pl @@ -57,9 +57,9 @@ if ( $query->param('sendEmail') || $query->param('resendEmail') ) { my $borrower; my $search_results; - # Find the borrower by his userid or email + # Find the borrower by userid, card number, or email if ($username) { - $search_results = Koha::Patrons->search( { userid => $username } ); + $search_results = Koha::Patrons->search( { -or => { userid => $username, cardnumber => $username } } ); } elsif ($email) { $search_results = Koha::Patrons->search( { -or => { email => $email, emailpro => $email, B_email => $email } } ); --