From 53b930002b82d3103482f4c9080b2a89d0f4fa14 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sat, 24 Dec 2022 20:20:37 +0100 Subject: html: Prevent invalid tags from being generated. --- mumi/web/view/html.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mumi/web/view/html.scm b/mumi/web/view/html.scm index def7477..7154585 100644 --- a/mumi/web/view/html.scm +++ b/mumi/web/view/html.scm @@ -557,10 +557,10 @@ failed to process associated messages.") (method "POST")) (input (@ (style "display:none") (name "validation") - (placeholder "Please leave this empty.")) "") + (placeholder "Please leave this empty."))) (input (@ (type "hidden") (name "timestamp") - (value ,(timestamp!))) "") + (value ,(timestamp!)))) (div (@ (class "avatar") (style "background-color:#bc80bd")) "?") -- cgit v1.2.3