Make nospam comparison case insensitive, since BugZilla keeps the

case of the login, which might differ from the case in the database.
This commit is contained in:
bryce-mozilla%nextbus.com 1999-06-11 16:07:32 +00:00
Родитель 254f0311f3
Коммит fd5ef6ca34
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -232,7 +232,8 @@ sub fixaddresses {
next;
}
}
if ($emailnotification eq "ExcludeSelfChanges" && $i eq $nametoexclude) {
if ($emailnotification eq "ExcludeSelfChanges" &&
(lc($i) eq $nametoexclude)) {
$didexclude = 1;
next;
}
@ -355,7 +356,7 @@ if ($ARGV[0] eq "regenerate") {
}
if ($#ARGV == 1) {
$nametoexclude = $ARGV[1];
$nametoexclude = lc($ARGV[1]);
}
ProcessOneBug($ARGV[0]);