diff --git a/src/Orchard.Web/Modules/Orchard.Users/Controllers/AccountController.cs b/src/Orchard.Web/Modules/Orchard.Users/Controllers/AccountController.cs index 6360a2574..fab5ea007 100644 --- a/src/Orchard.Web/Modules/Orchard.Users/Controllers/AccountController.cs +++ b/src/Orchard.Web/Modules/Orchard.Users/Controllers/AccountController.cs @@ -242,6 +242,7 @@ namespace Orchard.Users.Controllers { } } + [AlwaysAccessible] public ActionResult LostPassword(string nonce) { if ( _userService.ValidateLostPassword(nonce) == null ) { return RedirectToAction("LogOn"); @@ -253,6 +254,7 @@ namespace Orchard.Users.Controllers { } [HttpPost] + [AlwaysAccessible] [ValidateInput(false)] public ActionResult LostPassword(string nonce, string newPassword, string confirmPassword) { IUser user; @@ -281,6 +283,7 @@ namespace Orchard.Users.Controllers { return RedirectToAction("ChangePasswordSuccess"); } + [AlwaysAccessible] public ActionResult ChangePasswordSuccess() { return View(); }