Incorrect displaying of shared/dedicated IP on website details screen.

This commit is contained in:
feodor_fitsner 2012-09-26 10:24:01 -07:00
parent 25654d2607
commit 21e91d2931
3 changed files with 22 additions and 10 deletions

View file

@ -47,6 +47,7 @@ namespace WebsitePanel.Providers.Web
private string siteId;
private string siteIPAddress;
private int siteIPAddressId;
private bool isDedicatedIP;
private string dataPath;
private ServerBinding[] bindings;
private bool frontPageAvailable;
@ -85,6 +86,12 @@ namespace WebsitePanel.Providers.Web
set { siteIPAddressId = value; }
}
public bool IsDedicatedIP
{
get { return isDedicatedIP; }
set { isDedicatedIP = value; }
}
/// <summary>
/// Gets or sets logs path for the web site
/// </summary>