]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fixing build bustage. Incorrect usage "foreach my $foo qw(bar baz)" where the qw...
authormyk%mozilla.org <>
Sun, 29 Sep 2002 02:12:25 +0000 (02:12 +0000)
committermyk%mozilla.org <>
Sun, 29 Sep 2002 02:12:25 +0000 (02:12 +0000)
userprefs.cgi

index 1d4be2a780a2a467a23907bfe7f79c400a369213..2cc2b0340bb4f0aeb1cdbd0d0cb004d92cb95785 100755 (executable)
@@ -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';
     }