You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by lu...@apache.org on 2020/01/12 11:09:20 UTC

[struts] 02/03: WW-5054 Does not escapes debug results

This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a commit to branch WW-5054-debug-browser
in repository https://gitbox.apache.org/repos/asf/struts.git

commit a270fd376fb38504a290ab2c23763f4ffd1299e5
Author: Lukasz Lenart <lu...@apache.org>
AuthorDate: Sun Jan 12 12:08:39 2020 +0100

    WW-5054 Does not escapes debug results
---
 .../main/resources/org/apache/struts2/interceptor/debugging/browser.ftl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/src/main/resources/org/apache/struts2/interceptor/debugging/browser.ftl b/core/src/main/resources/org/apache/struts2/interceptor/debugging/browser.ftl
index 6558608..f1dcbbf 100644
--- a/core/src/main/resources/org/apache/struts2/interceptor/debugging/browser.ftl
+++ b/core/src/main/resources/org/apache/struts2/interceptor/debugging/browser.ftl
@@ -86,6 +86,6 @@
     </script>
 
 <body>
-    ${debugHtml}
+    ${debugHtml?no_esc}
 </body>
 </html>