From 2def70a01bd470f46fa8b83a71e1ec59b7089093 Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Tue, 28 Aug 2012 14:29:40 +0800 Subject: Bug 786167: fix various "use of uninitialized value" warnings --- Bugzilla/BugMail.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Bugzilla/BugMail.pm') diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index 069ebbe60..521291380 100644 --- a/Bugzilla/BugMail.pm +++ b/Bugzilla/BugMail.pm @@ -566,7 +566,9 @@ sub _get_new_bugmail_fields { # If there isn't anything to show, don't include this header. next unless $value; - push(@diffs, {field_name => $name, new => $value}); + push(@diffs, {field_name => $name, + field_desc => $field->description, + new => $value}); } return @diffs; -- cgit v1.2.3-24-g4f1b