From: lpsolit%gmail.com <> Date: Wed, 4 Jul 2007 03:57:06 +0000 (+0000) Subject: "Typo" in bug 337717: s/return/next/ in the foreach loop X-Git-Tag: bugzilla-3.1.2~167 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ef86c4226f7163a17f611759471f71692319a4af;p=thirdparty%2Fbugzilla.git "Typo" in bug 337717: s/return/next/ in the foreach loop --- diff --git a/whineatnews.pl b/whineatnews.pl index c6ab20af5d..12a86cb6b1 100755 --- a/whineatnews.pl +++ b/whineatnews.pl @@ -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};