From: lpsolit%gmail.com <> Date: Wed, 16 Aug 2006 06:08:34 +0000 (+0000) Subject: Bug 148836: Can't get email, "When I'm added to or removed from the Bug Owner capacit... X-Git-Tag: bugzilla-2.23.3~154 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e98e1e1699abc0551f3ca783794aea49c5d0c908;p=thirdparty%2Fbugzilla.git Bug 148836: Can't get email, "When I'm added to or removed from the Bug Owner capacity" ONLY - Patch by Frédéric Buclin r=bkor a=justdave --- diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index 4221a9dc49..07ebf226b3 100644 --- a/Bugzilla/BugMail.pm +++ b/Bugzilla/BugMail.pm @@ -354,7 +354,7 @@ sub ProcessOneBug { # The last relevant set of people are those who are being removed from # their roles in this change. We get their names out of the diffs. foreach my $ref (@$diffs) { - my ($who, $what, $when, $old, $new) = (@$ref); + my ($who, $whoname, $what, $when, $old, $new) = (@$ref); if ($old) { # You can't stop being the reporter, and mail isn't sent if you # remove your vote. diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm index 01f2db4d92..12c680f781 100644 --- a/Bugzilla/User.pm +++ b/Bugzilla/User.pm @@ -1132,7 +1132,7 @@ sub wants_bug_mail { # from the point of view of this user. my %events; foreach my $ref (@$fieldDiffs) { - my ($who, $fieldName, $when, $old, $new) = @$ref; + my ($who, $whoname, $fieldName, $when, $old, $new) = @$ref; # A change to any of the above fields sets the corresponding event if (defined($names_to_events{$fieldName})) { $events{$names_to_events{$fieldName}} = 1;