diff --git a/PROMS/VEPROMS.CSLA.Library/Config/SectionConfig.cs b/PROMS/VEPROMS.CSLA.Library/Config/SectionConfig.cs index 98b7c753..3739939e 100644 --- a/PROMS/VEPROMS.CSLA.Library/Config/SectionConfig.cs +++ b/PROMS/VEPROMS.CSLA.Library/Config/SectionConfig.cs @@ -607,7 +607,7 @@ namespace VEPROMS.CSLA.Library get { string s = _Xp["Section", "CheckoffHeading"]; - if (s != null && s.Equals(string.Empty)) + if (s != null && !s.Equals(string.Empty)) return Convert.ToInt32(s); return 0; }