From 74c567ef1dff9525d075e863be83643572acb0e7 Mon Sep 17 00:00:00 2001 From: Stephen Turner Date: Fri, 17 Feb 2017 16:56:44 +0000 Subject: [PATCH] CA-243964: Don't allow upload of .xsupdate files to >= 7.1 servers --- .../Wizards/PatchingWizard/PatchingWizard_SelectServers.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/XenAdmin/Wizards/PatchingWizard/PatchingWizard_SelectServers.cs b/XenAdmin/Wizards/PatchingWizard/PatchingWizard_SelectServers.cs index 7e783b3e5..ef6c120c7 100644 --- a/XenAdmin/Wizards/PatchingWizard/PatchingWizard_SelectServers.cs +++ b/XenAdmin/Wizards/PatchingWizard/PatchingWizard_SelectServers.cs @@ -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: