You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2017/03/01 17:27:28 UTC

svn commit: r1785002 - /jmeter/trunk/xdocs/stylesheets/site_printable.vsl

Author: fschumacher
Date: Wed Mar  1 17:27:27 2017
New Revision: 1785002

URL: http://svn.apache.org/viewvc?rev=1785002&view=rev
Log:
Correctly escape all text (not only code). Followup to r1763904.

Modified:
    jmeter/trunk/xdocs/stylesheets/site_printable.vsl

Modified: jmeter/trunk/xdocs/stylesheets/site_printable.vsl
URL: http://svn.apache.org/viewvc/jmeter/trunk/xdocs/stylesheets/site_printable.vsl?rev=1785002&r1=1785001&r2=1785002&view=diff
==============================================================================
--- jmeter/trunk/xdocs/stylesheets/site_printable.vsl (original)
+++ jmeter/trunk/xdocs/stylesheets/site_printable.vsl Wed Mar  1 17:27:27 2017
@@ -357,7 +357,7 @@ Contributed by $id.getAttributeValue("na
 #if($node.getClass().getName().indexOf("Element") > -1)
 #unknown($node)
 #else
-$node.getText()
+$escape.getText($node.getText())
 #end
 #end
 #end