зеркало из https://github.com/mozilla/pjs.git
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:
Родитель
254f0311f3
Коммит
fd5ef6ca34
|
@ -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]);
|
||||
|
|
Загрузка…
Ссылка в новой задаче