minor bug corrections
This commit is contained in:
parent
50d7ffaef4
commit
db2f096be6
BIN
runtime/java/util/Arrays$ArrayList.class
Normal file
BIN
runtime/java/util/Arrays$ArrayList.class
Normal file
Binary file not shown.
BIN
runtime/java/util/Arrays.class
Normal file
BIN
runtime/java/util/Arrays.class
Normal file
Binary file not shown.
@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
|
|
||||||
function htmlentities(str) {
|
function htmlentities(str) {
|
||||||
return String(str).replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"');
|
return String(str).replace(new RegExp("&","g"), '&').replace(new RegExp("<","g"), '<').replace(new RegExp(">","g"), '>').replace(new RegExp("\"","g"), '"');
|
||||||
}
|
}
|
||||||
|
|
||||||
#define LOG(msg) write(msg);\
|
#define LOG(msg) write(msg);\
|
||||||
|
Loading…
x
Reference in New Issue
Block a user