Revert "Temporarily disable FCoE feature for all hosts"

This reverts commit 0dd6ebdb7f.
This commit is contained in:
Mihaela Stoica 2015-07-13 09:57:10 +01:00
parent 9c28e31661
commit 4bc942117d
2 changed files with 2 additions and 2 deletions

View File

@ -167,7 +167,7 @@ namespace XenAdmin.TabPages
}
//show the FCoE column for Dundee or higher hosts only
ColumnFCoECapable.Visible = false; // Helpers.DundeeOrGreater(host);
ColumnFCoECapable.Visible = Helpers.DundeeOrGreater(host);
//CA-47050: the Device column should be autosized to Fill, but should not become smaller than a minimum
//width, which here is chosen to be the column header width. To find what this width is

View File

@ -93,7 +93,7 @@ namespace XenAdmin.Wizards.NewSRWizard_Pages
radioButtonCifs.Visible = !Helpers.FeatureForbidden(Connection, Host.RestrictCifs);
radioButtonFcoe.Visible = false; // Helpers.DundeeOrGreater(Connection);
radioButtonFcoe.Visible = Helpers.DundeeOrGreater(Connection);
foreach (var radioButton in RadioButtons)
{