Updated Helpers.AugustaOrGreater function to use Augusta platform version

Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
This commit is contained in:
Mihaela Stoica 2013-07-19 16:30:27 +01:00
parent 47d2ac49b3
commit 3d8ccf29e3

View File

@ -451,13 +451,10 @@ namespace XenAdmin.Core
if (host == null) if (host == null)
return true; return true;
return false; string platform_version = HostPlatformVersion(host);
return
//TODO: uncomment and update Augusta platform_version when it's known platform_version != null && productVersionCompare(platform_version, "1.8.50") >= 0 ||
//string platform_version = HostPlatformVersion(host); HostBuildNumber(host) == CUSTOM_BUILD_NUMBER;
//return
// platform_version != null && productVersionCompare(platform_version, "x.x.x") >= 0 ||
// HostBuildNumber(host) == CUSTOM_BUILD_NUMBER;
} }
// CP-3435: Disable Check for Updates in Common Criteria Certification project // CP-3435: Disable Check for Updates in Common Criteria Certification project