mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
Stop URLs from being censored (#4288)
URLs that contained a censored word were being altered by censored-words.js and ulimately this broke the links. As an example www.expertsexchange.com would get censored when it would link to a legitimate website. This URL blocking functionality should be handled through other settings.
This commit is contained in:
@@ -569,6 +569,9 @@ test("censoring", function() {
|
||||
cooked("you are a whizzer! I love cheesewhiz. Whiz.",
|
||||
"<p>you are a ■■■■■■■! I love cheesewhiz. ■■■■.</p>",
|
||||
"it censors words even if previous partial matches exist.");
|
||||
cooked("The link still works. [whiz](http://www.whiz.com)",
|
||||
"<p>The link still works. <a href=\"http://www.whiz.com\">■■■■</a></p>",
|
||||
"it won't break links by censoring them.");
|
||||
});
|
||||
|
||||
test("code blocks/spans hoisting", function() {
|
||||
|
||||
Reference in New Issue
Block a user