зеркало из https://github.com/mozilla/gecko-dev.git
Fixing build bustage. Incorrect usage "foreach my $foo qw(bar baz)" where the qw construct needs to be surrounded by parentheses.
This commit is contained in:
Родитель
978698129c
Коммит
ccc07fce55
|
@ -207,7 +207,7 @@ sub DoEmail {
|
|||
$vars->{'excludeself'} = 0;
|
||||
}
|
||||
|
||||
foreach my $flag qw(FlagRequestee FlagRequester) {
|
||||
foreach my $flag (qw(FlagRequestee FlagRequester)) {
|
||||
$vars->{$flag} =
|
||||
!exists($emailflags{$flag}) || $emailflags{$flag} eq 'on';
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче