From 555af49445826681f4019dc82501ee27bf74fd01 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Mon, 18 Jan 2021 16:39:09 -0600 Subject: [PATCH] Error detail must be enclosed in html tags --- src/pgwui_common/templates/auth_base.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pgwui_common/templates/auth_base.mak b/src/pgwui_common/templates/auth_base.mak index fc4fa5a..60f3bbd 100644 --- a/src/pgwui_common/templates/auth_base.mak +++ b/src/pgwui_common/templates/auth_base.mak @@ -132,7 +132,7 @@ ## Messages delivered here are all generated. Allow markup. % if hasattr(error, 'detail'): - ${error.detail | n} +

${error.detail | n}

% endif % if hasattr(error, 'data') and error.data:

Line is:

-- 2.34.1