Merge pull request #1443 from stephen-turner/CA-243964

CA-243964: Don't allow upload of .xsupdate files to >= 7.1 servers
This commit is contained in:
Gabor Apati-Nagy 2017-02-20 11:36:28 +00:00 committed by GitHub
commit da4140d75e

View File

@ -247,6 +247,11 @@ namespace XenAdmin.Wizards.PatchingWizard
{
case UpdateType.NewRetail:
case UpdateType.Existing:
if (Helpers.ElyOrGreater(host))
{
row.Enabled = false;
row.Cells[3].ToolTipText = Messages.PATCHINGWIZARD_SELECTSERVERPAGE_PATCH_NOT_APPLICABLE;
}
disableNotApplicableHosts(row, applicableHosts, host);
break;
case UpdateType.ISO: