Merge
This commit is contained in:
commit
1838ef55a6
2 changed files with 106 additions and 2 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