summaryrefslogtreecommitdiffstats
path: root/samples/OpenIdRelyingPartyMvc/Controllers/UserController.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2010-03-17 09:04:33 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2010-03-17 09:04:33 -0700
commit7d2200ee506a0b1a70a95644024ddae419dc9b30 (patch)
treeeb900aa785b1ea9572565e6204944e5be013b572 /samples/OpenIdRelyingPartyMvc/Controllers/UserController.cs
parent7c85a55bb9384b590451ad837adbacfcb6de0a44 (diff)
parent980693bd2183055c004b92341ac074fc1951dc73 (diff)
downloadDotNetOpenAuth-7d2200ee506a0b1a70a95644024ddae419dc9b30.zip
DotNetOpenAuth-7d2200ee506a0b1a70a95644024ddae419dc9b30.tar.gz
DotNetOpenAuth-7d2200ee506a0b1a70a95644024ddae419dc9b30.tar.bz2
Merge branch 'v3.3' into v3.4
Conflicts: samples/OpenIdRelyingPartyMvc/Views/User/LoginPopup.aspx src/DotNetOpenAuth.Test/OpenId/Extensions/ExtensionsInteropHelperRPRequestTests.cs
Diffstat (limited to 'samples/OpenIdRelyingPartyMvc/Controllers/UserController.cs')
-rw-r--r--samples/OpenIdRelyingPartyMvc/Controllers/UserController.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/OpenIdRelyingPartyMvc/Controllers/UserController.cs b/samples/OpenIdRelyingPartyMvc/Controllers/UserController.cs
index 54121cf..3ff405f 100644
--- a/samples/OpenIdRelyingPartyMvc/Controllers/UserController.cs
+++ b/samples/OpenIdRelyingPartyMvc/Controllers/UserController.cs
@@ -14,7 +14,7 @@
public ActionResult Index() {
if (!User.Identity.IsAuthenticated) {
- Response.Redirect("/User/Login?ReturnUrl=Index");
+ Response.Redirect("~/User/Login?ReturnUrl=Index");
}
return View("Index");
@@ -22,7 +22,7 @@
public ActionResult Logout() {
FormsAuthentication.SignOut();
- return Redirect("/Home");
+ return Redirect("~/Home");
}
public ActionResult Login() {