Added code to detect Unicode characters as HTML

This commit is contained in:
Stefan Ritt 2018-03-16 12:59:35 +01:00
parent f9c50b6ff5
commit 8ccc404180
2 changed files with 6 additions and 1 deletions

2
mxml

@ -1 +1 @@
Subproject commit 9c763a0e8797c6e30b9e3a2765b1f47b300a9f6b Subproject commit 15c5f5c6764f99e9974c6ea40f5a58f2d21285d6

View File

@ -5724,6 +5724,11 @@ int is_html(char *s)
} }
} }
if (strstr(str, "&#") && strchr(strstr(str, "&#"), ';')) {
xfree(str);
return TRUE;
}
xfree(str); xfree(str);
return FALSE; return FALSE;
} }