Fixed: In disabled hostheader mode site was created with default hostheader

value
This commit is contained in:
robvde 2012-10-14 14:55:34 +04:00
parent e6acb85682
commit 6987940e59
4 changed files with 20 additions and 5 deletions

View file

@ -51,7 +51,10 @@ namespace WebsitePanel.Portal
txtHostName.Text = String.IsNullOrEmpty(settings["HostName"]) ? "" : settings["HostName"];
}
else
lblHostName.Visible= txtHostName.Visible = false;
{
lblHostName.Visible = txtHostName.Visible = false;
txtHostName.Text = "";
}