diff --git a/PROMS/Formats/fmtall/BNPP1all.xml b/PROMS/Formats/fmtall/BNPP1all.xml index 8d86bbd3..eca9b25d 100644 Binary files a/PROMS/Formats/fmtall/BNPP1all.xml and b/PROMS/Formats/fmtall/BNPP1all.xml differ diff --git a/PROMS/Formats/fmtall/BNPPalrall.xml b/PROMS/Formats/fmtall/BNPPalrall.xml index 9af0ecec..7c4477e1 100644 Binary files a/PROMS/Formats/fmtall/BNPPalrall.xml and b/PROMS/Formats/fmtall/BNPPalrall.xml differ diff --git a/PROMS/VEPROMS.CSLA.Library/Extension/DisplayText.cs b/PROMS/VEPROMS.CSLA.Library/Extension/DisplayText.cs index 8cf6048f..f50d846f 100644 --- a/PROMS/VEPROMS.CSLA.Library/Extension/DisplayText.cs +++ b/PROMS/VEPROMS.CSLA.Library/Extension/DisplayText.cs @@ -2123,8 +2123,8 @@ namespace VEPROMS.CSLA.Library string wordMatchEnd = Regex.IsMatch(replaceWord.Substring(replaceWord.Length - 1, 1), @"\W") ? "" : @"(?=\W|$)"; string pat = wordMatchBeg + @"(? _hasAppl; + public string hasAppl + { + get + { + return LazyLoad(ref _hasAppl, "@hasAppl"); + } + } } #endregion #region SIAll @@ -2443,12 +2451,13 @@ namespace VEPROMS.CSLA.Library } } // C2021-061: For Barakah don't do replace if word is surrounded by " or ' - private LazyLoad _NoReplaceQuoteWords; - public bool NoReplaceQuoteWords + // Initial fix was 11/3/21. Added parens do the quotes on 11/16/21 + private LazyLoad _NoReplaceQuoteParenWords; + public bool NoReplaceQuoteParenWords { get { - return LazyLoad(ref _NoReplaceQuoteWords, "@NoReplaceQuoteWords"); + return LazyLoad(ref _NoReplaceQuoteParenWords, "@NoReplaceQuoteParenWords"); } } private LazyLoad _UseMetaSections;