]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 178189 - when filing a new bug, the generated bugmail doesn't include
authorbbaetz%student.usyd.edu.au <>
Sat, 9 Nov 2002 20:20:18 +0000 (20:20 +0000)
committerbbaetz%student.usyd.edu.au <>
Sat, 9 Nov 2002 20:20:18 +0000 (20:20 +0000)
product/component
r=justdave, myk
a=justdave

processmail

index fd1f50b629a3bae2ec931fd5848ab94c8a0dcc22..a7663149f8c04267363c5744917bc5fa978911a7 100755 (executable)
@@ -108,6 +108,9 @@ sub ProcessOneBug {
     foreach my $i (@::log_columns) {
         $values{$i} = shift(@row);
     }
+    $values{product} = get_product_name($values{product_id});
+    $values{component} = get_component_name($values{component_id});
+
     my ($start, $end) = (@row);
     # $start and $end are considered safe because users can't touch them
     trick_taint($start);