diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2011-07-02 20:04:57 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2011-07-02 20:04:57 -0700 |
commit | ac7b3b8bd58a220bb1d9e310456e75f601b99b58 (patch) | |
tree | a232dca840de2c5175f576dc612a31b77bf9ea80 /src/DotNetOpenAuth.OpenId/OpenId/RelyingParty/AuthenticationRequest.cs | |
parent | 4faaa016aeccd6aa78a4095021fe67328a57c9fe (diff) | |
download | DotNetOpenAuth-ac7b3b8bd58a220bb1d9e310456e75f601b99b58.zip DotNetOpenAuth-ac7b3b8bd58a220bb1d9e310456e75f601b99b58.tar.gz DotNetOpenAuth-ac7b3b8bd58a220bb1d9e310456e75f601b99b58.tar.bz2 |
OpenID project now builds.
* Many of the resource items (resx, png) are improperly declared in the project file.
Diffstat (limited to 'src/DotNetOpenAuth.OpenId/OpenId/RelyingParty/AuthenticationRequest.cs')
-rw-r--r-- | src/DotNetOpenAuth.OpenId/OpenId/RelyingParty/AuthenticationRequest.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.OpenId/OpenId/RelyingParty/AuthenticationRequest.cs b/src/DotNetOpenAuth.OpenId/OpenId/RelyingParty/AuthenticationRequest.cs index 8bbf04f..d79038c 100644 --- a/src/DotNetOpenAuth.OpenId/OpenId/RelyingParty/AuthenticationRequest.cs +++ b/src/DotNetOpenAuth.OpenId/OpenId/RelyingParty/AuthenticationRequest.cs @@ -554,7 +554,7 @@ namespace DotNetOpenAuth.OpenId.RelyingParty { request.AssociationHandle = association != null ? association.Handle : null; request.SignReturnTo = this.returnToArgsMustBeSigned; request.AddReturnToArguments(this.returnToArgs); - if (this.DiscoveryResult.UserSuppliedIdentifier != null && DotNetOpenAuthSection.Configuration.OpenId.RelyingParty.PreserveUserSuppliedIdentifier) { + if (this.DiscoveryResult.UserSuppliedIdentifier != null && OpenIdElement.Configuration.RelyingParty.PreserveUserSuppliedIdentifier) { request.AddReturnToArguments(UserSuppliedIdentifierParameterName, this.DiscoveryResult.UserSuppliedIdentifier.OriginalString); } foreach (IOpenIdMessageExtension extension in this.extensions) { |