diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-04-18 20:57:59 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-04-18 20:57:59 -0700 |
commit | 72bb5de1be9c64e1119117d26a299bb5f36a1c72 (patch) | |
tree | 78343bdf465eeff527616630f5a328fe044cea4c /samples/OpenIdRelyingPartyMvc/Controllers/UserController.cs | |
parent | 64048517bd4c575af436dcfc20cd5877e6f4c8b5 (diff) | |
download | DotNetOpenAuth-72bb5de1be9c64e1119117d26a299bb5f36a1c72.zip DotNetOpenAuth-72bb5de1be9c64e1119117d26a299bb5f36a1c72.tar.gz DotNetOpenAuth-72bb5de1be9c64e1119117d26a299bb5f36a1c72.tar.bz2 |
Fixed occasional URL validation failures in samples.
Diffstat (limited to 'samples/OpenIdRelyingPartyMvc/Controllers/UserController.cs')
-rw-r--r-- | samples/OpenIdRelyingPartyMvc/Controllers/UserController.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/samples/OpenIdRelyingPartyMvc/Controllers/UserController.cs b/samples/OpenIdRelyingPartyMvc/Controllers/UserController.cs index dd526d3..784533b 100644 --- a/samples/OpenIdRelyingPartyMvc/Controllers/UserController.cs +++ b/samples/OpenIdRelyingPartyMvc/Controllers/UserController.cs @@ -32,6 +32,7 @@ return View("Login"); } + [ValidateInput(false)] public ActionResult Authenticate(string returnUrl) { var openid = new OpenIdRelyingParty(); var response = openid.GetResponse(); |