https://bz.apache.org/bugzilla/show_bug.cgi?id=69467
Shital Patil <shitapa...@ptc.com> changed: What |Removed |Added ---------------------------------------------------------------------------- OS| |All --- Comment #1 from Shital Patil <shitapa...@ptc.com> --- Workaround we are using is by modifying ant\etc\junit-noframes.xsl <xsl:template name="JS-escape"> <xsl:param name="string"/> <xsl:param name="tmp1" select="replace($string,'\\','\\\\')"/> <xsl:param name="tmp2" select="replace($tmp1,"'","\\'")"/> <xsl:param name="tmp3" select="replace($tmp2," ",'\\n')"/> <xsl:param name="tmp4" select="replace($tmp3," ",'\\r')"/> <xsl:value-of select="$tmp4"/> </xsl:template> -- You are receiving this mail because: You are the assignee for the bug.