Fixed not persisting IIS7 settings
PArtial checkin litigation hold Fixed HideQuota enforce in space resources overview
This commit is contained in:
parent
97bb7eeddd
commit
7ce43121db
4 changed files with 82 additions and 11 deletions
|
@ -275,7 +275,12 @@ namespace WebsitePanel.Portal.ProviderControls
|
|||
|
||||
// Helicon Ape
|
||||
bool registerHeliconApeGlobbally = chkHeliconApeGlobalRegistration.Checked;
|
||||
if (registerHeliconApeGlobbally != (bool)ViewState["HeliconApeInitiallyEnabled"])
|
||||
|
||||
bool bHeliconApeInitiallyEnabled = false;
|
||||
if (ViewState["HeliconApeInitiallyEnabled"] != null)
|
||||
bHeliconApeInitiallyEnabled = (bool)ViewState["HeliconApeInitiallyEnabled"];
|
||||
|
||||
if (registerHeliconApeGlobbally != bHeliconApeInitiallyEnabled)
|
||||
{
|
||||
if (registerHeliconApeGlobbally)
|
||||
{
|
||||
|
@ -286,8 +291,8 @@ namespace WebsitePanel.Portal.ProviderControls
|
|||
ES.Services.WebServers.DisableHeliconApeGlobally(int.Parse(Request.QueryString["ServiceID"]));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
if (WDeployEnabledCheckBox.Checked)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue