@@ -, +, @@ OPAC superlibrarian user using the new email address added in the previous step superlibrarian. --- opac/opac-password-recovery.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- a/opac/opac-password-recovery.pl +++ a/opac/opac-password-recovery.pl @@ -77,7 +77,9 @@ if ( $query->param('sendEmail') || $query->param('resendEmail') ) { } elsif ( $borrower = $search_results->next() ) { # One matching borrower - if ( $borrower->category->effective_reset_password ) { + if ( !$borrower->has_permission('superlibrarian') + && $borrower->category->effective_reset_password ) + { my @emails = grep { $_ } ( $borrower->email, $borrower->emailpro, $borrower->B_email ); --