This commit is contained in:
Kathy Ruffing 2011-03-07 13:12:15 +00:00
parent 9a9e57020f
commit c6203a6d6d

View File

@ -1230,6 +1230,7 @@ namespace VEPROMS.CSLA.Library
retval = StripLinks(retval);
retval = ReplaceSpecialCharacters(retval);
retval = retval.Replace("\u2011","-");
retval = retval.Replace("\r\n", ";");
return retval;
}
private static string StripRtfFormatting(string rtf)