From 2fc6e203afcbaa7d83b7e5ad046c6e56b97ae56a Mon Sep 17 00:00:00 2001 From: "myk%mozilla.org" Date: Sat, 28 Sep 2002 19:12:25 +0000 Subject: [PATCH] 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 --- mozilla/webtools/bugzilla/userprefs.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/webtools/bugzilla/userprefs.cgi b/mozilla/webtools/bugzilla/userprefs.cgi index 1d4be2a780a..2cc2b0340bb 100755 --- a/mozilla/webtools/bugzilla/userprefs.cgi +++ b/mozilla/webtools/bugzilla/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'; }