Change unicode dashes to the regular dash character for DisplayText

This commit is contained in:
John Jenko 2009-08-05 14:55:37 +00:00
parent cf8813cb83
commit a0c5a4d2aa

View File

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