Fix issue with Web Service Settings not saving due to bug in Helicon Code
This commit is contained in:
commit
a5b7cd4558
1 changed files with 6 additions and 1 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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue