summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2007-07-04 05:57:06 +0200
committerlpsolit%gmail.com <>2007-07-04 05:57:06 +0200
commitef86c4226f7163a17f611759471f71692319a4af (patch)
tree35ebc999785d20d44afc9ff395b7194018bf3c52
parente016a0fafabe435ec0b920b3deccfc914a68f95d (diff)
downloadbugzilla-ef86c4226f7163a17f611759471f71692319a4af.tar.gz
bugzilla-ef86c4226f7163a17f611759471f71692319a4af.tar.xz
"Typo" in bug 337717: s/return/next/ in the foreach loop
-rwxr-xr-xwhineatnews.pl2
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};