Fixed for 1.0. --
CliffordAdams
The parsing of the banned file in the UserIsBanned
? function is incorrect. Since the text was entered in a form textarea, the line termination may include \r, causing matches to fail.
Workaround is to strip \r characters upon file load:
($status, $data) = &ReadFile("$DataDir/banlist");
$data =~ s/\r//g;