summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Core/Messaging/MessagingUtilities.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2013-01-01 07:50:22 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2013-01-01 07:50:22 -0800
commit6e9889a61aa3fac1331d14ef18c95718c198c831 (patch)
tree05eba3233336d6e3703f5c632571cc5048aefc85 /src/DotNetOpenAuth.Core/Messaging/MessagingUtilities.cs
parenta72f4df236e67f9c965863b6c43954b085cf8f6b (diff)
downloadDotNetOpenAuth-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.cs2
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);