From b09de72f83efcd9af85b1ca25b78b9ac43ee5952 Mon Sep 17 00:00:00 2001 From: Gabor Apati-Nagy Date: Tue, 20 Sep 2016 15:00:06 +0100 Subject: [PATCH] Revert "CP-18925: Hide batch hotfixing option in XenCenter" --- .../Wizards/PatchingWizard/PatchingWizard_SelectPatchPage.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/XenAdmin/Wizards/PatchingWizard/PatchingWizard_SelectPatchPage.cs b/XenAdmin/Wizards/PatchingWizard/PatchingWizard_SelectPatchPage.cs index b08277c42..942d1492e 100644 --- a/XenAdmin/Wizards/PatchingWizard/PatchingWizard_SelectPatchPage.cs +++ b/XenAdmin/Wizards/PatchingWizard/PatchingWizard_SelectPatchPage.cs @@ -149,7 +149,7 @@ namespace XenAdmin.Wizards.PatchingWizard if (direction == PageLoadedDirection.Forward) { //if any connected host is licensed for automatic updating - bool autoUpdatePossible = false; //temporarily disabled ConnectionsManager.XenConnectionsCopy.Any(c => c != null && c.Cache.Hosts.Any(h => !Host.RestrictBatchHotfixApply(h))); + bool autoUpdatePossible = ConnectionsManager.XenConnectionsCopy.Any(c => c != null && c.Cache.Hosts.Any(h => !Host.RestrictBatchHotfixApply(h))); labelWithAutomatic.Visible = automaticOptionLabel.Visible = AutomaticRadioButton.Visible = autoUpdatePossible; labelWithoutAutomatic.Visible = !autoUpdatePossible;