diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-01-01 07:50:22 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-01-01 07:50:22 -0800 |
commit | 6e9889a61aa3fac1331d14ef18c95718c198c831 (patch) | |
tree | 05eba3233336d6e3703f5c632571cc5048aefc85 /src/DotNetOpenAuth.Core/Messaging/MessagingUtilities.cs | |
parent | a72f4df236e67f9c965863b6c43954b085cf8f6b (diff) | |
download | DotNetOpenAuth-6e9889a61aa3fac1331d14ef18c95718c198c831.zip DotNetOpenAuth-6e9889a61aa3fac1331d14ef18c95718c198c831.tar.gz DotNetOpenAuth-6e9889a61aa3fac1331d14ef18c95718c198c831.tar.bz2 |
OpenID RP login actually works now.
Diffstat (limited to 'src/DotNetOpenAuth.Core/Messaging/MessagingUtilities.cs')
-rw-r--r-- | src/DotNetOpenAuth.Core/Messaging/MessagingUtilities.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Core/Messaging/MessagingUtilities.cs b/src/DotNetOpenAuth.Core/Messaging/MessagingUtilities.cs index 9aee0e3..4f4eb66 100644 --- a/src/DotNetOpenAuth.Core/Messaging/MessagingUtilities.cs +++ b/src/DotNetOpenAuth.Core/Messaging/MessagingUtilities.cs @@ -1978,7 +1978,7 @@ namespace DotNetOpenAuth.Messaging { public override void ExecuteResult(ControllerContext context) { context.HttpContext.Response.StatusCode = (int)this.response.StatusCode; - context.HttpContext.Response.Status = this.response.ReasonPhrase; + context.HttpContext.Response.StatusDescription = this.response.ReasonPhrase; foreach (var header in this.response.Headers) { foreach (var value in header.Value) { context.HttpContext.Response.AddHeader(header.Key, value); |