Fix password reset

This commit is contained in:
DariusIII
2018-05-31 10:36:06 +02:00
parent 55583dfd51
commit 414038a2cf
2 changed files with 2 additions and 1 deletions
@@ -64,7 +64,7 @@ class ForgotPasswordController extends Controller
//
// Send the email
//
$resetLink = $request->server('SERVER_NAME').'/forgottenpassword?action=reset&guid='.$guid;
$resetLink = $request->server('SERVER_NAME').'/resetpassword?guid='.$guid;
Mail::to($ret['email'])->send(new ForgottenPassword($resetLink));
$sent = true;
}