@@ -, +, @@ gender neutral). --- opac/opac-password-recovery.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/opac/opac-password-recovery.pl +++ a/opac/opac-password-recovery.pl @@ -56,7 +56,7 @@ 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, cardnumber, or email if ($username) { $search_results = [ Koha::Patrons->search( { -or => { userid => $username, cardnumber => $username } } ) ]; } --