diff --git a/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs b/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs index 3c41697c..6abbd681 100644 --- a/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs +++ b/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs @@ -6329,9 +6329,12 @@ namespace VEPROMS.CSLA.Library } private bool GetProcHasSupInfoData() { - foreach (SectionInfo mySection in Sections) + if (Sections != null) // If no sections don't check { - if (mySection.MyDocStyle.SupplementalInformation && mySection.HasSupInfoSteps) return true; + foreach (SectionInfo mySection in Sections) + { + if (mySection.MyDocStyle.SupplementalInformation && mySection.HasSupInfoSteps) return true; + } } return false; }