diff --git a/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs b/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs index 8b643543..1b5fb604 100644 --- a/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs +++ b/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs @@ -1096,6 +1096,9 @@ namespace VEPROMS.CSLA.Library if (MyContent.Type / 10000 != 2) return false; ItemInfo parent = ActiveParent as ItemInfo; if (parent == null) return false; + // IsHigh was returning true if this item is a caution or note off of a section.. + // from the (parent.MyContent.Type / 1000) == 1. + if (IsCaution || IsNote) return false; if ((parent.MyContent.Type / 10000) == 1) return true; return false;