When a Hard Return is added to a High-Level step, the RTF command "\line" is added. This was appearing in the TreeView. The code was changed so that the command was replaced with a semicolon.

This commit is contained in:
Rich 2014-08-27 12:23:23 +00:00
parent 7a9bdf9dd7
commit e8a905af49

View File

@ -1832,6 +1832,7 @@ namespace VEPROMS.CSLA.Library
retval = StripLinks(retval);
retval = ReplaceSpecialCharacters(retval);
retval = retval.Replace("\u2011", "-");
retval = retval.Replace(@"\line ", ";");
retval = retval.Replace("\r\n", ";");
retval = retval.Replace("\n", ";"); //added for consistency checking with approved version
return retval;