mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-03-14 00:50:14 -04:00
FIX: Censored word match fail if earlier partial match
This commit is contained in:
parent
01bb2d4c31
commit
0a5acba77e
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ Discourse.Dialect.addPreProcessor(function(text) {
|
|||
if (!censorRegexp) {
|
||||
var split = censored.split("|");
|
||||
if (split && split.length) {
|
||||
censorRegexp = new RegExp("\\b" + split.map(function (t) { return "(" + t.replace(/[-/\\^$*+?.()|[\]{}]/g, '\\$&') + ")"; }).join("|") + "\\b", "ig");
|
||||
censorRegexp = new RegExp("\\b(?:" + split.map(function (t) { return "(" + t.replace(/[-/\\^$*+?.()|[\]{}]/g, '\\$&') + ")"; }).join("|") + ")\\b", "ig");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue