From c67def5eb085040c65579d9349ad8ff793425193 Mon Sep 17 00:00:00 2001 From: Kathy Date: Thu, 22 Sep 2011 11:50:54 +0000 Subject: [PATCH] --- PROMS/VEPROMS.CSLA.Library/Config/SectionConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }