From 5d7258145bb33c79a47e8f4dbd134af36e0546e0 Mon Sep 17 00:00:00 2001 From: Kathy Date: Thu, 16 May 2019 11:19:03 +0000 Subject: [PATCH] B2019-075: Incorrect Point Name in Westinghouse Alarms --- PROMS/Volian.Print.Library/VlnSvgPageHelper.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs b/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs index 0a596c4b..e5e99000 100644 --- a/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs +++ b/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs @@ -1361,7 +1361,8 @@ i = 0; } string[] parts = parms.Split(",".ToCharArray());// split on comma // B2019-031 Support commas embedded in Alarm ID (Procedure Number) - if (parts.Length > 3)// If extra commas combine first part to account for it + // B2019-075: Added the check for commas in the procedure number - this code was causing a bug in other alarms. + if (parts.Length > 3 && MySection.MyProcedure.DisplayNumber.IndexOf(",") > 0)// If extra commas combine first part to account for it { int n = parts.Length - 3; string part0 = parts[0];