diff --git a/XenAdmin/Core/VMGroup.cs b/XenAdmin/Core/VMGroup.cs index 3c8ff8f73..82ad8421f 100644 --- a/XenAdmin/Core/VMGroup.cs +++ b/XenAdmin/Core/VMGroup.cs @@ -194,8 +194,8 @@ namespace XenAdmin.Core { if (typeof(T) == typeof(VMPP) && (Helpers.ClearwaterOrGreater(connection))) return false; - //VMSS is enabled Dundee onwards - if ((typeof(T) == typeof(VMSS)) && !Helpers.DundeeOrGreater(connection)) + //VMSS is enabled Falcon onwards + if ((typeof(T) == typeof(VMSS)) && !Helpers.FalconOrGreater(connection)) return false; return typeof(T) == typeof(VMPP) ? diff --git a/XenAdmin/MainWindow.cs b/XenAdmin/MainWindow.cs index ce0da3793..69c5986d7 100644 --- a/XenAdmin/MainWindow.cs +++ b/XenAdmin/MainWindow.cs @@ -1669,7 +1669,7 @@ namespace XenAdmin IXenConnection conn; conn = SelectionManager.Selection.GetConnectionOfAllItems(); - if (SelectionManager.Selection.Count > 0 && (Helpers.GetMaster(conn) != null) && (Helpers.DundeeOrGreater(conn))) /* hide VMPP */ + if (SelectionManager.Selection.Count > 0 && (Helpers.GetMaster(conn) != null) && (Helpers.FalconOrGreater(conn))) /* hide VMPP */ { assignSnapshotScheduleToolStripMenuItem.Available = true; VMSnapshotScheduleToolStripMenuItem.Available = true; diff --git a/XenAdmin/TabPages/SnapshotsPage.cs b/XenAdmin/TabPages/SnapshotsPage.cs index 07c9a549f..09271ac3b 100644 --- a/XenAdmin/TabPages/SnapshotsPage.cs +++ b/XenAdmin/TabPages/SnapshotsPage.cs @@ -191,7 +191,7 @@ namespace XenAdmin.TabPages linkLabelVMPPInfo.Text = Messages.VIEW_POLICIES; } } - else if (Helpers.DundeeOrGreater(VM.Connection)) + else if (Helpers.FalconOrGreater(VM.Connection)) { panelVMPP.Visible = true; var vmss = VM.Connection.Resolve(VM.snapshot_schedule);