From 1995e44cc7140e9b20a6e63cca6ed8b4b0a40d7f Mon Sep 17 00:00:00 2001 From: Kathy Date: Mon, 17 Jul 2017 14:50:10 +0000 Subject: [PATCH] =?UTF-8?q?F2017-046:=20Remove=20=E2=80=98@@=E2=80=99=20in?= =?UTF-8?q?=20SectionNumber/SectionTitle=20page=20list=20item=20if=20on=20?= =?UTF-8?q?facing=20page?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PROMS/Volian.Print.Library/VlnSvgPageHelper.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs b/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs index 5824450d..f0eb2175 100644 --- a/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs +++ b/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs @@ -1290,6 +1290,8 @@ namespace Volian.Print.Library // of each other. Use a temporary string (plstr) to process the pagelist tokens for each pagelist line (row) before adding // it to the svgGroup. plstr = pageItem.Token; + // F2017-046: Remove the '@@' characters that were getting printed on SAMG Sup Info facing pages for Calvert (BGESAM1 format). + if (MyPromsPrinter.DoingFacingPage && plstr.Contains("@@")) plstr = plstr.Replace("@@", ""); foreach (Match match in matches) { string token = match.Value;