Mail: fixing unicode for szlig;

The unicode for szlig ("ß") when filtering HTML tags was wrong, showing
"ö" instead. Discovered by miqlas, pin-pointed by PulkoMandy.
This commit is contained in:
Humdinger 2018-12-23 10:57:13 +01:00
parent 52a022f201
commit 54782f4255

View File

@ -212,7 +212,7 @@ FilterHTMLTag(int32 &first, char **t, char *end)
{"ograve;", 0x00f2},
{"ouml;", 0x00f6},
{"quot;", '"'},
{"szlig;", 0x00f6},
{"szlig;", 0x00df},
{"uacute;", 0x00fa},
{"ucirc;", 0x00fb},
{"ugrave;", 0x00f9},