Merge
This commit is contained in:
commit
5f4c5bcc56
6 changed files with 6 additions and 6 deletions
|
@ -64,7 +64,7 @@ namespace WebsitePanel.Portal.ExchangeServer
|
|||
{
|
||||
get
|
||||
{
|
||||
return Utils.CheckQouta(Quotas.ORGANIZATION_SECURITYGROUPMANAGEMENT, Cntx);
|
||||
return Utils.CheckQouta(Quotas.ORGANIZATION_SECURITYGROUPS, Cntx);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -54,7 +54,7 @@ namespace WebsitePanel.Portal.ExchangeServer
|
|||
{
|
||||
get
|
||||
{
|
||||
return Utils.CheckQouta(Quotas.ORGANIZATION_SECURITYGROUPMANAGEMENT, Cntx);
|
||||
return Utils.CheckQouta(Quotas.ORGANIZATION_SECURITYGROUPS, Cntx);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -64,7 +64,7 @@ namespace WebsitePanel.Portal.HostedSolution
|
|||
{
|
||||
get
|
||||
{
|
||||
return Utils.CheckQouta(Quotas.ORGANIZATION_SECURITYGROUPMANAGEMENT, Cntx);
|
||||
return Utils.CheckQouta(Quotas.ORGANIZATION_SECURITYGROUPS, Cntx);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -64,7 +64,7 @@ namespace WebsitePanel.Portal.HostedSolution
|
|||
{
|
||||
get
|
||||
{
|
||||
return Utils.CheckQouta(Quotas.ORGANIZATION_SECURITYGROUPMANAGEMENT, Cntx);
|
||||
return Utils.CheckQouta(Quotas.ORGANIZATION_SECURITYGROUPS, Cntx);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -189,7 +189,7 @@ namespace WebsitePanel.Portal.ExchangeServer.UserControls
|
|||
if (Utils.CheckQouta(Quotas.ORGANIZATION_USERS, cntx))
|
||||
organizationGroup.MenuItems.Add(CreateMenuItem("Users", "users"));
|
||||
|
||||
if (Utils.CheckQouta(Quotas.ORGANIZATION_SECURITYGROUPMANAGEMENT, cntx))
|
||||
if (Utils.CheckQouta(Quotas.ORGANIZATION_SECURITYGROUPS, cntx))
|
||||
organizationGroup.MenuItems.Add(CreateMenuItem("SecurityGroups", "secur_groups"));
|
||||
|
||||
if (organizationGroup.MenuItems.Count > 0)
|
||||
|
|
|
@ -60,7 +60,7 @@ namespace WebsitePanel.Portal.ExchangeServer.UserControls
|
|||
|
||||
PackageContext cntx = PackagesHelper.GetCachedPackageContext(PanelSecurity.PackageId);
|
||||
|
||||
bool bSuccess = Utils.CheckQouta(Quotas.ORGANIZATION_SECURITYGROUPMANAGEMENT, cntx);
|
||||
bool bSuccess = Utils.CheckQouta(Quotas.ORGANIZATION_SECURITYGROUPS, cntx);
|
||||
|
||||
if (!bSuccess)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue