diff options
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/BugMail.pm | 2 | ||||
-rw-r--r-- | Bugzilla/Hook.pm | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index 7a92b13a5..b718f4199 100644 --- a/Bugzilla/BugMail.pm +++ b/Bugzilla/BugMail.pm @@ -428,7 +428,7 @@ sub Send { } Bugzilla::Hook::process('bugmail_recipients', - { recipients => \%recipients }); + { bug => $bug, recipients => \%recipients }); # Find all those user-watching anyone on the current list, who is not # on it already themselves. diff --git a/Bugzilla/Hook.pm b/Bugzilla/Hook.pm index 36f083975..cf718c94f 100644 --- a/Bugzilla/Hook.pm +++ b/Bugzilla/Hook.pm @@ -374,6 +374,10 @@ Params: =over +=item C<bug> + +The L<Bugzilla::Bug> that bugmail is being sent about. + =item C<recipients> This is a hashref. The keys are numeric user ids from the C<profiles> |