diff --git a/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs b/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs index bdd9066d..d0c2c1a2 100644 --- a/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs +++ b/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs @@ -3438,6 +3438,9 @@ namespace VEPROMS.CSLA.Library else _ActiveSection = this; } + // B2018-018 Approval bug fix. Active section was in cache as an ItemInfo instead of a SectionInfo + if (_ActiveSection != null && !(_ActiveSection is SectionInfo)) + _ActiveSection = SectionInfo.Get(_ActiveSection.ItemID); } return _ActiveSection.IsSection ? _ActiveSection : null; }