Fix regex warning message

This commit is contained in:
Calvin Montgomery 2014-05-20 22:41:21 -07:00
parent f5528c766f
commit da6eadf33b
1 changed files with 4 additions and 4 deletions

View File

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