summaryrefslogtreecommitdiffstats
path: root/projecttemplates
diff options
context:
space:
mode:
Diffstat (limited to 'projecttemplates')
-rw-r--r--projecttemplates/RelyingPartyLogic/Utilities.cs2
-rw-r--r--projecttemplates/WebFormsRelyingParty/Web.config2
2 files changed, 2 insertions, 2 deletions
diff --git a/projecttemplates/RelyingPartyLogic/Utilities.cs b/projecttemplates/RelyingPartyLogic/Utilities.cs
index 6552596..57a1baa 100644
--- a/projecttemplates/RelyingPartyLogic/Utilities.cs
+++ b/projecttemplates/RelyingPartyLogic/Utilities.cs
@@ -121,7 +121,7 @@ GO
}
DbConnection connection = (EntityConnection)objectContext.Connection;
- bool opening = (connection.State == ConnectionState.Closed);
+ bool opening = connection.State == ConnectionState.Closed;
if (opening) {
connection.Open();
}
diff --git a/projecttemplates/WebFormsRelyingParty/Web.config b/projecttemplates/WebFormsRelyingParty/Web.config
index bdfc67a..2092ba0 100644
--- a/projecttemplates/WebFormsRelyingParty/Web.config
+++ b/projecttemplates/WebFormsRelyingParty/Web.config
@@ -48,7 +48,7 @@
<messaging>
<untrustedWebRequest>
<whitelistHosts>
- <add name="localhost" />
+ <!--<add name="localhost" />-->
</whitelistHosts>
</untrustedWebRequest>
</messaging>