bug fixes

This commit is contained in:
vfedosevich 2013-11-15 14:18:50 +03:00
parent d9bbd4aa81
commit 203e61ade4
4 changed files with 50 additions and 67 deletions

View file

@ -145,6 +145,11 @@ namespace WebsitePanel.EnterpriseServer
{
Organization org = OrganizationController.GetOrganization(itemId);
if (org == null)
{
return false;
}
return CheckUsersDomainExistsInternal(itemId, org.PackageId);
}