Fixed: (WHMCS Module) - Domain is not created even if the "Create Zone Record"

checkbox is checked.
This commit is contained in:
Christopher York 2013-01-15 16:44:34 -06:00
parent c3d784d327
commit 3a22ea2ef0

View file

@ -165,7 +165,7 @@ namespace WebsitePanel.EnterpriseServer
// create domain // create domain
int domainId = 0; int domainId = 0;
if ((createWebSite || createMailAccount) && !String.IsNullOrEmpty(domainName)) if ((createWebSite || createMailAccount || createZoneRecord) && !String.IsNullOrEmpty(domainName))
{ {
try try
{ {
@ -193,7 +193,7 @@ namespace WebsitePanel.EnterpriseServer
} }
} }
if (createWebSite && !String.IsNullOrEmpty(domainName)) if (createWebSite && (domainId > 0))
{ {
// create web site // create web site
try try
@ -252,7 +252,7 @@ namespace WebsitePanel.EnterpriseServer
} }
} }
if (createMailAccount && !String.IsNullOrEmpty(domainName)) if (createMailAccount && (domainId > 0))
{ {
// create default mailbox // create default mailbox
try try