B2018-016 replace the open/close quote characters (0x1c & 0x1d) with the xml “"” when doing the Consistency Checks that look at x/y plots

This commit is contained in:
John Jenko 2018-01-29 14:38:59 +00:00
parent 7f14581ad5
commit 9c1f58eb0b

View File

@ -905,7 +905,7 @@ namespace VEPROMS.CSLA.Library
BuildTransitionFromChecks(cc, proc);
BuildTransitionToChecks(cc, proc);
BuildLibDocChecks(cc, proc);
return cc.ToString().Replace("OldDocDate=\"0001-01-01T00:00:00\"","");
return cc.ToString().Replace("OldDocDate=\"0001-01-01T00:00:00\"", "").Replace("", """).Replace("", """); // B2018-016 approve errors trying to process open/close quote characters
}
//end jcb stuff
private static void BuildROChecks(ConsistencyChecks cc, ProcedureInfo proc)