From a44842f1cf50cc332b1e59c7d1448b15d3da01f9 Mon Sep 17 00:00:00 2001 From: Gervase Markham Date: Thu, 27 Jan 2011 11:10:27 +0000 Subject: Fix bustage; diffs is an arrayref in 4.0, an array on trunk. https://bugzilla.mozilla.org/show_bug.cgi?id=616422 --- Bugzilla/BugMail.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla/BugMail.pm') 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. -- cgit v1.2.3-24-g4f1b