Fix regex warning message

This commit is contained in:
Calvin Montgomery 2014-05-20 22:41:21 -07:00
parent f5528c766f
commit da6eadf33b

View file

@ -2160,13 +2160,13 @@ function checkEntitiesInStr(str) {
">": ">",
'"': """,
"'": "'",
"(": "(",
")": ")"
"\\(": "(",
"\\)": ")"
};
var m = str.match(/([&<>"'\(\)])/);
var m = str.match(/([&<>"'])|(\\\()|(\\\))/);
if (m && m[1] in entities) {
return { src: m[1], replace: entities[m[1]] };
return { src: m[1].replace(/^\\/, ""), replace: entities[m[1]] };
} else {
return false;
}