From 119032ce0358ac5bf9bb52ad2d3cd8a484da0a39 Mon Sep 17 00:00:00 2001 From: briancaruso Date: Thu, 17 Nov 2011 17:00:14 +0000 Subject: [PATCH] HTML escaping errors in error-display.ftl --- .../web/templates/freemarker/body/error/error-display.ftl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webapp/web/templates/freemarker/body/error/error-display.ftl b/webapp/web/templates/freemarker/body/error/error-display.ftl index 4ab973782..ebfc6ab7e 100644 --- a/webapp/web/templates/freemarker/body/error/error-display.ftl +++ b/webapp/web/templates/freemarker/body/error/error-display.ftl @@ -11,15 +11,15 @@ <#if adminErrorData??> <#-- view for site administrators --> <#if adminErrorData.errorMessage?has_content> -

Error message: ${adminErrorData.errorMessage}

+

Error message: ${adminErrorData.errorMessage?html}

<#if adminErrorData.stackTrace?has_content>

- Stack trace (full trace available in the vivo log): ${adminErrorData.stackTrace} + Stack trace (full trace available in the vivo log): ${adminErrorData.stackTrace?html}

<#if adminErrorData.cause?has_content> -

Caused by: ${adminErrorData.cause}

+

Caused by: ${adminErrorData.cause?html}