diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-05-10 01:20:10 -0700 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-05-10 01:20:10 -0700 |
commit | 582d79393180c95706d5cef9e631c579b7c69d86 (patch) | |
tree | deb7d7b9d8b6402e1bcd018cc2661bc21fd099ec /Bugzilla/BugMail.pm | |
parent | Bug 478771: Bugzilla::Search should drop invalid bug statuses from the search... (diff) | |
download | bugzilla-582d79393180c95706d5cef9e631c579b7c69d86.tar.gz bugzilla-582d79393180c95706d5cef9e631c579b7c69d86.tar.bz2 bugzilla-582d79393180c95706d5cef9e631c579b7c69d86.zip |
Change @changed_fields to \@changed_fields inside a hashref in
Bugzilla::BugMail.
https://bugzilla.mozilla.org/show_bug.cgi?id=395451
Diffstat (limited to 'Bugzilla/BugMail.pm')
-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 98c3c40f8..d6f466150 100644 --- a/Bugzilla/BugMail.pm +++ b/Bugzilla/BugMail.pm @@ -560,7 +560,7 @@ sub sendMail { isnew => $isnew, to_user => $user, bug => $bug, - changedfields => @changed_fields, + changedfields => \@changed_fields, reasons => \@reasons, reasons_watch => \@reasons_watch, reasonsheader => join(" ", @headerrel), |