Commit 07d9826a authored by myk%mozilla.org's avatar myk%mozilla.org

Fixing build bustage. Incorrect usage "foreach my $foo qw(bar baz)" where the…

Fixing build bustage. Incorrect usage "foreach my $foo qw(bar baz)" where the qw construct needs to be surrounded by parentheses.
parent 900c6758
...@@ -239,7 +239,7 @@ sub SaveEmail { ...@@ -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" : "");
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment