From f4e1c63ec1999f0d8fe1929003c20bb6d1afcaff Mon Sep 17 00:00:00 2001 From: John Date: Fri, 21 Aug 2015 13:10:37 +0000 Subject: [PATCH] Fixed bug B2015-133 where RO fields that contain a single character were not printing on the report --- PROMS/Volian.Print.Library/CompleteRORpt.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PROMS/Volian.Print.Library/CompleteRORpt.cs b/PROMS/Volian.Print.Library/CompleteRORpt.cs index f771dbee..3010c031 100644 --- a/PROMS/Volian.Print.Library/CompleteRORpt.cs +++ b/PROMS/Volian.Print.Library/CompleteRORpt.cs @@ -226,7 +226,7 @@ namespace Volian.Print.Library break; } } - if (idx < instr.Length - 1) + if (idx <= instr.Length - 1) { int uidx = 0; string strChk = (instr.Substring(idx)); @@ -252,7 +252,7 @@ namespace Volian.Print.Library underlineChunk = !underlineChunk; } } - if (uidx < strChk.Length - 1) + if (uidx <= strChk.Length - 1) { string tstr = strChk.Substring(uidx); if (tstr.EndsWith(" "))