X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FBadWords.pm;h=db33d7a1c4ebaeb34127c79bb1f5c1463dc35463;hb=985363e6626057fc4efb8b75a94a18aeeae73e54;hp=dc0a10fc74a7c047a6944ac5644bdea1bfc18e33;hpb=f52bf428cfd46825c2e2fcd3a0ba55097bbe7bd6;p=spider.git diff --git a/perl/BadWords.pm b/perl/BadWords.pm index dc0a10fc..db33d7a1 100644 --- a/perl/BadWords.pm +++ b/perl/BadWords.pm @@ -74,7 +74,7 @@ sub create_regex # create a closure for each word so that it matches stuff with spaces/punctuation # and repeated characters in it my $w = uc $_; - my @l = map { $_ eq 'I' ? '[I1]' : ($_ eq 'O' ? '[O0]' : $_) }split //, $w; + my @l = split //, $w; my $e = join '+[\s\W]+', @l; my $s = eval qq{sub { return \$_[0] =~ /$e+/ ? '$w' : () } }; push @regex, $s unless $@;