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];