CP-7527: Fix Creedence version number check.

Signed-off-by: U-CITRITE\zhengc <zhengc@NKGWCHAIZ00.citrite.net>
This commit is contained in:
U-CITRITE\zhengc 2014-05-07 13:15:29 +08:00
parent 011cc4ae17
commit 4100f506ca

View File

@ -434,7 +434,7 @@ namespace XenAdmin.Core
string platform_version = HostPlatformVersion(host);
return
platform_version != null && productVersionCompare(platform_version, "1.8.900") >= 0 ||
platform_version != null && productVersionCompare(platform_version, "1.8.90") >= 0 ||
HostBuildNumber(host) == CUSTOM_BUILD_NUMBER;
}