From: lpsolit%gmail.com <> Date: Wed, 4 Jul 2007 03:59:34 +0000 (+0000) Subject: "Typo" in bug 337717: s/return/next/ in the foreach loop X-Git-Tag: bugzilla-3.0.1~57 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4301c80d5e987df7fcffcd398e025be0c99a33a8;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};