From: myk%mozilla.org <> Date: Sun, 29 Sep 2002 02:12:25 +0000 (+0000) Subject: Fixing build bustage. Incorrect usage "foreach my $foo qw(bar baz)" where the qw... X-Git-Tag: bugzilla-2.17.1~110 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=900c675889a580ddbe79c2c8c952e6c094095822;p=thirdparty%2Fbugzilla.git Fixing build bustage. Incorrect usage "foreach my $foo qw(bar baz)" where the qw construct needs to be surrounded by parentheses. --- diff --git a/userprefs.cgi b/userprefs.cgi index 1d4be2a780..2cc2b0340b 100755 --- a/userprefs.cgi +++ b/userprefs.cgi @@ -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'; }