summaryrefslogtreecommitdiffstats
path: root/projecttemplates/MvcRelyingParty/Code/OpenIdRelyingPartyService.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2010-07-09 20:56:19 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2010-07-09 20:56:19 -0700
commit21145c4c7cc2c2a8daa36862b555766a6306c552 (patch)
tree7c417a24022479f2219dfb48fb011a6124ed58cc /projecttemplates/MvcRelyingParty/Code/OpenIdRelyingPartyService.cs
parent07047811a7dfd1218de8f20393a282391e2f35cc (diff)
parent9938982dc1ae0c2125291667262b713550a0cf8c (diff)
downloadDotNetOpenAuth-21145c4c7cc2c2a8daa36862b555766a6306c552.zip
DotNetOpenAuth-21145c4c7cc2c2a8daa36862b555766a6306c552.tar.gz
DotNetOpenAuth-21145c4c7cc2c2a8daa36862b555766a6306c552.tar.bz2
Merge branch 'v3.4' into oauth2
Conflicts: samples/OAuthConsumer/Web.config src/DotNetOpenAuth/Configuration/DotNetOpenAuth.xsd src/DotNetOpenAuth/DotNetOpenAuth.csproj
Diffstat (limited to 'projecttemplates/MvcRelyingParty/Code/OpenIdRelyingPartyService.cs')
-rw-r--r--projecttemplates/MvcRelyingParty/Code/OpenIdRelyingPartyService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/projecttemplates/MvcRelyingParty/Code/OpenIdRelyingPartyService.cs b/projecttemplates/MvcRelyingParty/Code/OpenIdRelyingPartyService.cs
index 4501f52..7931200 100644
--- a/projecttemplates/MvcRelyingParty/Code/OpenIdRelyingPartyService.cs
+++ b/projecttemplates/MvcRelyingParty/Code/OpenIdRelyingPartyService.cs
@@ -90,7 +90,7 @@
public string PreloadDiscoveryResults(Realm realm, Uri returnTo, Uri privacyPolicy, params Identifier[] identifiers) {
return relyingParty.AsAjaxPreloadedDiscoveryResult(
- identifiers.Select(id => this.CreateRequests(id, realm, returnTo, privacyPolicy)).Flatten());
+ identifiers.SelectMany(id => this.CreateRequests(id, realm, returnTo, privacyPolicy)));
}
public ActionResult ProcessAjaxOpenIdResponse() {