Fixing lost password validation email

Work Item: 17150

--HG--
branch : 1.x
This commit is contained in:
Sebastien Ros
2011-01-07 12:01:05 -08:00
parent 4bb4889f99
commit df70d8c4c8

View File

@@ -160,7 +160,7 @@ namespace Orchard.Users.Controllers {
return View();
}
_userService.SendLostPasswordEmail(username, nonce => Url.AbsoluteAction(() => Url.Action("ValidateLostPassword", "Account", new { Area = "Orchard.Users", nonce = nonce })));
_userService.SendLostPasswordEmail(username, nonce => Url.AbsoluteAction(() => Url.Action("LostPassword", "Account", new { Area = "Orchard.Users", nonce = nonce })));
_orchardServices.Notifier.Information(T("Check your e-mail for the confirmation link."));