diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-05-10 10:20:10 +0200 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-05-10 10:20:10 +0200 |
commit | 582d79393180c95706d5cef9e631c579b7c69d86 (patch) | |
tree | deb7d7b9d8b6402e1bcd018cc2661bc21fd099ec | |
parent | 910d4cd251416fdcfe8cdb3d453208b16ae53000 (diff) | |
download | bugzilla-582d79393180c95706d5cef9e631c579b7c69d86.tar.gz bugzilla-582d79393180c95706d5cef9e631c579b7c69d86.tar.xz |
Change @changed_fields to \@changed_fields inside a hashref in
Bugzilla::BugMail.
https://bugzilla.mozilla.org/show_bug.cgi?id=395451
-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), |