Last modified: 2008-04-16 10:47:40 UTC
As you can see in the URL, we have banned many bad words, but newly created users still can create articles like "Fuck" or stuff like that.
think this INVALID. the regex doesn't match just shit/fuck it needs "is (a|an)" in there.
but en.wiki use the same syntax. Are they wrong, too?
No it's meant to block pages like "(Name) is a ass", not title's containing curse words.
If you wanted to block a bunch of bad words from being used--as opposed to a phrase, suck as "So and so is a XYZ"--I'd go for this: \b(bitch|fuck)\b And just put (within the parentheses) a vertical bar between each term. This serves as a logical "OR" to the regex engine.