]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
"Typo" in bug 337717: s/return/next/ in the foreach loop
authorlpsolit%gmail.com <>
Wed, 4 Jul 2007 03:59:34 +0000 (03:59 +0000)
committerlpsolit%gmail.com <>
Wed, 4 Jul 2007 03:59:34 +0000 (03:59 +0000)
whineatnews.pl

index c6ab20af5d8e37bb7e7a1a44e23e22ee416a4ee3..12a86cb6b1a411a753aee9adda61922132e295ec 100755 (executable)
@@ -71,7 +71,7 @@ foreach my $bug (@$slt_bugs) {
 
 foreach my $email (sort (keys %bugs)) {
     my $user = new Bugzilla::User({name => $email});
-    return if $user->email_disabled;
+    next if $user->email_disabled;
 
     my $vars = {'email' => $email};