From: azlm8t <31170571+azlm8t@users.noreply.github.com> Date: Sun, 12 Jul 2020 17:01:01 +0000 (+0100) Subject: Fix escape code '"e;' should be '"'. (#1355) X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d492091de8231ca25ac4b4f682da7d32f3d6f44f;p=thirdparty%2Ftvheadend.git 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;". --- 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 )