diff options
author | Gervase Markham <gerv@gerv.net> | 2011-01-27 12:10:27 +0100 |
---|---|---|
committer | Gervase Markham <gerv@mozilla.org> | 2011-01-27 12:10:27 +0100 |
commit | a44842f1cf50cc332b1e59c7d1448b15d3da01f9 (patch) | |
tree | faa3a8359cc545fe0069b923e2d00a28db0e759f | |
parent | 065c567b63997acaf3d0c5619d240965bcf5fc5b (diff) | |
download | bugzilla-a44842f1cf50cc332b1e59c7d1448b15d3da01f9.tar.gz bugzilla-a44842f1cf50cc332b1e59c7d1448b15d3da01f9.tar.xz |
Fix bustage; diffs is an arrayref in 4.0, an array on trunk.
https://bugzilla.mozilla.org/show_bug.cgi?id=616422
-rw-r--r-- | Bugzilla/BugMail.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index 9630ce0ed..9d63b9c79 100644 --- a/Bugzilla/BugMail.pm +++ b/Bugzilla/BugMail.pm @@ -191,7 +191,7 @@ sub Send { Bugzilla::Hook::process('bugmail_recipients', { bug => $bug, recipients => \%recipients, - users => \%user_cache, diffs => $diffs }); + users => \%user_cache, diffs => \@diffs }); # Find all those user-watching anyone on the current list, who is not # on it already themselves. |