From df70d8c4c81003116c767ff302806b8aba83fff0 Mon Sep 17 00:00:00 2001 From: Sebastien Ros Date: Fri, 7 Jan 2011 12:01:05 -0800 Subject: [PATCH] Fixing lost password validation email Work Item: 17150 --HG-- branch : 1.x --- .../Modules/Orchard.Users/Controllers/AccountController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Orchard.Web/Modules/Orchard.Users/Controllers/AccountController.cs b/src/Orchard.Web/Modules/Orchard.Users/Controllers/AccountController.cs index 860ef830d..395eb0c41 100644 --- a/src/Orchard.Web/Modules/Orchard.Users/Controllers/AccountController.cs +++ b/src/Orchard.Web/Modules/Orchard.Users/Controllers/AccountController.cs @@ -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."));