From d492091de8231ca25ac4b4f682da7d32f3d6f44f Mon Sep 17 00:00:00 2001 From: azlm8t <31170571+azlm8t@users.noreply.github.com> Date: Sun, 12 Jul 2020 18:01:01 +0100 Subject: [PATCH] Fix escape code '"e;' should be '"'. (#1355) For example S3.2.4: https://www.w3.org/MarkUp/html-spec/html-spec.txt or https://dev.w3.org/html5/html-author/charref The browsers I tested displayed '"e;' as double quote marks followed by "e;". --- src/webui/html.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webui/html.c b/src/webui/html.c index 1c9d205cc..fc7a56c02 100644 --- a/src/webui/html.c +++ b/src/webui/html.c @@ -30,7 +30,7 @@ static struct { { '<', "<" }, { '&', "&" }, { '\'', "'" }, - { '"', ""e;" } + { '"', """ } }; static const char *html_escape_char ( const char chr ) -- 2.47.2