diff --git a/PROMS/Volian.Print.Library/vlnPrintObject.cs b/PROMS/Volian.Print.Library/vlnPrintObject.cs index db1e743b..9dc356d8 100644 --- a/PROMS/Volian.Print.Library/vlnPrintObject.cs +++ b/PROMS/Volian.Print.Library/vlnPrintObject.cs @@ -119,6 +119,8 @@ namespace Volian.Print.Library // this asssures that the blank line will be printed if (myRtf.Contains(@"\line \line ")) myRtf= myRtf.Replace(@"\line \line ", @"\line \u160? \line "); + if (myRtf.Contains(@"\pard\line ")) // Bug fix: B2016-145 for VC.Summer End Message + myRtf = myRtf.Replace(@"\pard\line ", @"\par "); _IParagraph = RtfToParagraph(myRtf, HasIndent); ProfileTimer.Pop(profileDepth); }