Fixed: Create InstantAlias creates pointer records for all websites, Create
InstantAlias only crate pointer records for sites within the specific domain Fixed: delete instant alias to be ran twice to remove alias Fixed: Webhosting: Hostname support not enabled: only to show unallocated domains
This commit is contained in:
parent
01cab2916a
commit
97e4dce0e5
7 changed files with 111 additions and 48 deletions
|
@ -793,6 +793,16 @@ namespace WebsitePanel.EnterpriseServer
|
|||
new SqlParameter("@domainName", domainName));
|
||||
}
|
||||
|
||||
public static IDataReader GetDomainByNameByPointer(int actorId, string domainName, bool isDomainPointer)
|
||||
{
|
||||
return SqlHelper.ExecuteReader(ConnectionString, CommandType.StoredProcedure,
|
||||
ObjectQualifier + "GetDomainByNameByPointer",
|
||||
new SqlParameter("@ActorId", actorId),
|
||||
new SqlParameter("@domainName", domainName),
|
||||
new SqlParameter("@isDomainPointer", isDomainPointer));
|
||||
}
|
||||
|
||||
|
||||
public static DataSet GetDomainsByZoneId(int actorId, int zoneId)
|
||||
{
|
||||
return SqlHelper.ExecuteDataset(ConnectionString, CommandType.StoredProcedure,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue