Incorrect displaying of shared/dedicated IP on website details screen.
This commit is contained in:
parent
25654d2607
commit
21e91d2931
3 changed files with 22 additions and 10 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue