Added code to detect Unicode characters as HTML

This commit is contained in:
2018-03-16 12:59:35 +01:00
parent f9c50b6ff5
commit 8ccc404180
2 changed files with 6 additions and 1 deletions
+1 -1
Submodule mxml updated: 9c763a0e87...15c5f5c676
+5
View File
@@ -5724,6 +5724,11 @@ int is_html(char *s)
}
}
if (strstr(str, "&#") && strchr(strstr(str, "&#"), ';')) {
xfree(str);
return TRUE;
}
xfree(str);
return FALSE;
}