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:
myk%mozilla.org 2002-09-28 19:14:07 +00:00
Родитель ccc07fce55
Коммит f0bca9f7d8
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -239,7 +239,7 @@ sub SaveEmail {
$updateString .= 'ExcludeSelf~'; $updateString .= 'ExcludeSelf~';
} }
foreach my $flag qw(FlagRequestee FlagRequester) { foreach my $flag (qw(FlagRequestee FlagRequester)) {
$updateString .= "~$flag~" . (defined($::FORM{$flag}) ? "on" : ""); $updateString .= "~$flag~" . (defined($::FORM{$flag}) ? "on" : "");
} }