Fixing build bustage. Incorrect usage "foreach my $foo qw(bar baz)" where the qw construct needs to be surrounded by parentheses.
git-svn-id: svn://10.0.0.236/trunk@130677 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -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';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user