change them.
4. A non-registered user will get the /spider/data/motd_nor file instead of
the motd on login.
+5. made the BadWord regexes slightly less aggressive WARNING this may let
+some constructions thru, but hopefully will also allow more legitimate
+foreign (mainly) things thru as well.
19Oct01=======================================================================
1. Allow DELETE (0x7f) for backspace in console.pl
2. redo prefix table using latest cty.dat
my $w = uc $_;
my @l = split //, $w;
my $e = join '+[\s\W]*', @l;
- $s .= "push \@out, \$1 if \$str =~ /($e)/;\n";
+ $s .= "push \@out, \$1 if \$str =~ /\\b($e)/;\n";
}
}
$s .= "return \@out;\n}";