From: Gervase Markham Date: Thu, 27 Jan 2011 11:10:27 +0000 (+0000) Subject: Fix bustage; diffs is an arrayref in 4.0, an array on trunk. X-Git-Tag: bugzilla-4.1.1~73 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a44842f1cf50cc332b1e59c7d1448b15d3da01f9;p=thirdparty%2Fbugzilla.git Fix bustage; diffs is an arrayref in 4.0, an array on trunk. https://bugzilla.mozilla.org/show_bug.cgi?id=616422 --- diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index 9630ce0ede..9d63b9c79d 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.