From 63062f7bba05e2aae20799cf35c1a866d149390a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 3 Oct 2013 18:05:37 +0200 Subject: [PATCH] Instead hard breaks in multi-line error messages --- src/root/error.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/root/error.tt b/src/root/error.tt index 928c1baa..c591ccc0 100644 --- a/src/root/error.tt +++ b/src/root/error.tt @@ -2,7 +2,7 @@ [% USE HTML %] [% FOREACH error IN errors %] -
[% HTML.escape(error) %]
+
[% HTML.escape(error).replace('\n', '
') %]
[% END %] [% END %]