diff options
author | lpsolit%gmail.com <> | 2007-07-04 03:57:06 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2007-07-04 03:57:06 +0000 |
commit | ef86c4226f7163a17f611759471f71692319a4af (patch) | |
tree | 35ebc999785d20d44afc9ff395b7194018bf3c52 /whineatnews.pl | |
parent | Bug 337717: whineatnews.pl sends email to users having "Bugmail Disabled = 1"... (diff) | |
download | bugzilla-ef86c4226f7163a17f611759471f71692319a4af.tar.gz bugzilla-ef86c4226f7163a17f611759471f71692319a4af.tar.bz2 bugzilla-ef86c4226f7163a17f611759471f71692319a4af.zip |
"Typo" in bug 337717: s/return/next/ in the foreach loop
Diffstat (limited to 'whineatnews.pl')
-rwxr-xr-x | whineatnews.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/whineatnews.pl b/whineatnews.pl index c6ab20af5..12a86cb6b 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}; |