diff options
author | dave%intrec.com <> | 2001-01-25 11:51:49 +0100 |
---|---|---|
committer | dave%intrec.com <> | 2001-01-25 11:51:49 +0100 |
commit | 96cbf32c14dc1c024153e8fc9dc764737ab7ba98 (patch) | |
tree | 6a0da025b4b49a1682fdcbefd18fcc98e284b98a /processmail | |
parent | 31c7bd50f37c3337c13017bf5d3c5a6dc9210972 (diff) | |
download | bugzilla-96cbf32c14dc1c024153e8fc9dc764737ab7ba98.tar.gz bugzilla-96cbf32c14dc1c024153e8fc9dc764737ab7ba98.tar.xz |
Re-fixing bug 30694. part of the original patch got left out.
Diffstat (limited to 'processmail')
-rwxr-xr-x | processmail | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/processmail b/processmail index f3dfdebdb..15b0c6366 100755 --- a/processmail +++ b/processmail @@ -141,7 +141,7 @@ sub DescDependencies { my ($bug_status, $resolution) = (FetchSQLData()); my $desc; if ($bug_status eq "NEW" || $bug_status eq "ASSIGNED" || - $bug_status eq "REOPENED") { + $bug_status eq "REOPENED" || $bug_status eq "UNCONFIRMED") { $desc = ""; } else { $desc = "[$resolution]"; |