From: Max Kanat-Alexander Date: Mon, 10 May 2010 08:20:10 +0000 (-0700) Subject: Change @changed_fields to \@changed_fields inside a hashref in X-Git-Tag: bugzilla-3.7.1~94 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=582d79393180c95706d5cef9e631c579b7c69d86;p=thirdparty%2Fbugzilla.git Change @changed_fields to \@changed_fields inside a hashref in Bugzilla::BugMail. https://bugzilla.mozilla.org/show_bug.cgi?id=395451 --- diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index 98c3c40f81..d6f4661504 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),