Bad character in column number for FNP data

This commit is contained in:
Kathy Ruffing 2013-10-28 13:55:47 +00:00
parent 6720adef4f
commit c59264b027

View File

@ -235,7 +235,7 @@ namespace VEPROMS.CSLA.Library
if (s == string.Empty) if (s == string.Empty)
s = _Xp.ParentValue("Format", "Columns"); // get the parent value s = _Xp.ParentValue("Format", "Columns"); // get the parent value
// If there is no parent value, then use the volian default // If there is no parent value, then use the volian default
if (s == string.Empty) if (s == string.Empty || s == "t") // fnp aop1 had this (not sure about other fnp data)
return FormatColumns.TwoColumn;// At the procedure level, default to Two column return FormatColumns.TwoColumn;// At the procedure level, default to Two column
return (FormatColumns)int.Parse(s); return (FormatColumns)int.Parse(s);