1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-01 17:38:41 +00:00

Fix null string escape

This commit is contained in:
proller 2014-02-24 20:41:04 +04:00
parent f6232d71b6
commit d4be81155e

View file

@ -23,6 +23,7 @@ function humanTime(seconds) {
}
function escapeHTML(str) {
if(!str) return str;
return str.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/"/g, '&quot;');
}