Bugzilla shouldn't display empty header in the New: email notifications (bug 85734)

r=timeless
This commit is contained in:
jake%acutex.net 2001-06-14 14:16:27 +00:00
Родитель bc79bd9d38
Коммит c52c3207f3
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -648,8 +648,8 @@ sub NewProcessOnePerson ($$$$$$$$$$) {
foreach my $f (@headerlist) {
if ($mailhead{$f}) {
my $value = $values{$f};
if (!defined $value) {
# Probaby ought to whine or something. ###
# If there isn't anything to show, don't include this header
if (! $value) {
next;
}
my $desc = $fielddescription{$f};