summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-03-31 07:37:28 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-03-31 07:37:28 -0700
commitc2bc3aeac7d6bcfe743b3cfbcb6374b10598e9b1 (patch)
tree0fc486b57ebeb3f708a4883e90e03db4572f24e8
parent2b61e3ac16a30f302776fb0e0883e8d047e401f8 (diff)
parent9d9cd262f28b8662eb989157ed8c43133f0aee9c (diff)
downloadDotNetOpenAuth-c2bc3aeac7d6bcfe743b3cfbcb6374b10598e9b1.zip
DotNetOpenAuth-c2bc3aeac7d6bcfe743b3cfbcb6374b10598e9b1.tar.gz
DotNetOpenAuth-c2bc3aeac7d6bcfe743b3cfbcb6374b10598e9b1.tar.bz2
Merge branch 'v2.3' into v2.4
-rw-r--r--lib/System.Web.Abstractions.dllbin84800 -> 77824 bytes
-rw-r--r--lib/System.Web.Mvc.dllbin149824 -> 186176 bytes
-rw-r--r--lib/System.Web.Routing.dllbin68416 -> 61440 bytes
-rw-r--r--src/DotNetOpenId/RelyingParty/OpenIdTextBox.cs2
4 files changed, 1 insertions, 1 deletions
diff --git a/lib/System.Web.Abstractions.dll b/lib/System.Web.Abstractions.dll
index 9cf91bd..d3920a5 100644
--- a/lib/System.Web.Abstractions.dll
+++ b/lib/System.Web.Abstractions.dll
Binary files differ
diff --git a/lib/System.Web.Mvc.dll b/lib/System.Web.Mvc.dll
index 0a14058..fb88363 100644
--- a/lib/System.Web.Mvc.dll
+++ b/lib/System.Web.Mvc.dll
Binary files differ
diff --git a/lib/System.Web.Routing.dll b/lib/System.Web.Routing.dll
index 7ee4b90..3879747 100644
--- a/lib/System.Web.Routing.dll
+++ b/lib/System.Web.Routing.dll
Binary files differ
diff --git a/src/DotNetOpenId/RelyingParty/OpenIdTextBox.cs b/src/DotNetOpenId/RelyingParty/OpenIdTextBox.cs
index 1d23341..26b1aa8 100644
--- a/src/DotNetOpenId/RelyingParty/OpenIdTextBox.cs
+++ b/src/DotNetOpenId/RelyingParty/OpenIdTextBox.cs
@@ -594,7 +594,7 @@ namespace DotNetOpenId.RelyingParty
if (!Enabled || Page.IsPostBack) return;
var consumer = createRelyingParty();
if (consumer.Response != null) {
- string persistentString = consumer.Response.GetCallbackArgument(usePersistentCookieCallbackKey);
+ string persistentString = Page.Request.QueryString[usePersistentCookieCallbackKey];
bool persistentBool;
if (persistentString != null && bool.TryParse(persistentString, out persistentBool)) {
UsePersistentCookie = persistentBool;