Server component reverted to .NET 3.5, CRM provider moved to dedicated project

This commit is contained in:
robvde 2013-01-25 19:07:48 +04:00
parent 4fcede5919
commit 872c555c3b
12 changed files with 262 additions and 57 deletions

View file

@ -309,7 +309,7 @@ namespace WebsitePanel.Providers.HostedSolution
info.LitigationHoldTotalSize = (totalItemSize == null) ? 0 : ConvertUnlimitedToBytes(totalItemSize);
Int32 itemCount = (Int32)GetPSObjectProperty(statistics, "ItemsInFolder");
info.LitigationHoldTotalItems = (itemCount == null) ? 0 : itemCount;
info.LitigationHoldTotalItems = (itemCount == 0) ? 0 : itemCount;
}
}
else