From c0276a73695d30c579f05158538af7796304faa3 Mon Sep 17 00:00:00 2001 From: feodor_fitsner Date: Thu, 20 Sep 2012 13:12:23 -0700 Subject: [PATCH] SessionValidationKey bug in update fixed --- .../Sources/WebsitePanel.Setup/Wizard/ExpressInstallPage.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WebsitePanel.Installer/Sources/WebsitePanel.Setup/Wizard/ExpressInstallPage.cs b/WebsitePanel.Installer/Sources/WebsitePanel.Setup/Wizard/ExpressInstallPage.cs index 9db3a3c7..2542406b 100644 --- a/WebsitePanel.Installer/Sources/WebsitePanel.Setup/Wizard/ExpressInstallPage.cs +++ b/WebsitePanel.Installer/Sources/WebsitePanel.Setup/Wizard/ExpressInstallPage.cs @@ -346,7 +346,7 @@ namespace WebsitePanel.Setup if (appSettings != null) { var sessionKey = doc.CreateElement("add"); - sessionKey.SetAttribute("name", "SessionValidationKey"); + sessionKey.SetAttribute("key", "SessionValidationKey"); sessionKey.SetAttribute("value", StringUtils.GenerateRandomString(16)); appSettings.AppendChild(sessionKey); }