Merge pull request #531 from MihaelaStoica/temp

Temporarily disable FCoE feature for all hosts
This commit is contained in:
Gabor Apati-Nagy 2015-07-03 12:41:29 +01:00
commit 1efb42da6d
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 = Helpers.DundeeOrGreater(host);
ColumnFCoECapable.Visible = false; // 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 = Helpers.DundeeOrGreater(Connection);
radioButtonFcoe.Visible = false; // Helpers.DundeeOrGreater(Connection);
foreach (var radioButton in RadioButtons)
{