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:
parent
52a022f201
commit
54782f4255
@ -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},
|
||||
|
Loading…
Reference in New Issue
Block a user