@@ -, +, @@ - Set OpacResetPassword = allowed - Make sure you have a user with a username and email - Go to the OPAC and make sure you are not logged in - Click on the "Forgot your password?" link - Fill in "Login" and "Email" and click on "Submit" - You will get an error that says: - Apply the patch - The steps above will have added your user to the borrower_password_recovery table in the database. Delete it from there to make sure you start a fresh reset request. - Repeat the steps above and notice that the error is gone. You should get a nice message instead that says "An email has been sent to [your email]". - Sign off --- Koha/Patron/Password/Recovery.pm | 1 + 1 file changed, 1 insertion(+) --- a/Koha/Patron/Password/Recovery.pm +++ a/Koha/Patron/Password/Recovery.pm @@ -19,6 +19,7 @@ package Koha::Patron::Password::Recovery; use Modern::Perl; use C4::Context; +use C4::Letters; use Crypt::Eksblowfish::Bcrypt qw(en_base64); use vars qw(@ISA @EXPORT); --