Fixed: flipped the behavior of "allow Tenant to create domains" to "Not allow

Tenant to create domains" within hosting plans.

Existing beta users will need to update their plans
This commit is contained in:
robvde 2012-10-10 21:42:24 +04:00
parent 6cf65cc9df
commit 18dd0d9096
4 changed files with 4 additions and 4 deletions

View file

@ -153,7 +153,7 @@ namespace WebsitePanel.Portal
{
if (user.Role == UserRole.User)
{
btnDelete.Enabled = Utils.CheckQouta(Quotas.OS_ALLOWTENANTCREATEDOMAINS, cntx);
btnDelete.Enabled = !Utils.CheckQouta(Quotas.OS_NOTALLOWTENANTCREATEDOMAINS, cntx);
}
}
}