diff options
author | 2009-12-17 23:31:51 +0000 | |
---|---|---|
committer | 2009-12-17 23:31:51 +0000 | |
commit | a73890d2ef8851ddae6b4991998824596a0f5644 (patch) | |
tree | a154cc5cd26842300bb0dd513ed7949c67682153 /importxml.pl | |
parent | Bug 470608: <colgroup> is not well supported - Patch by Aaron Larson <aaron@l... (diff) | |
download | bugzilla-a73890d2ef8851ddae6b4991998824596a0f5644.tar.gz bugzilla-a73890d2ef8851ddae6b4991998824596a0f5644.tar.bz2 bugzilla-a73890d2ef8851ddae6b4991998824596a0f5644.zip |
Bug 162060: Remove the relationship between "votestoconfirm" and whether or not the UNCONFIRMED status is available, by adding a checkbox to enable the UNCONFIRMED status in editproducts.cgi.
Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
Diffstat (limited to 'importxml.pl')
-rwxr-xr-x | importxml.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/importxml.pl b/importxml.pl index 05f95d646..1a61c5ead 100755 --- a/importxml.pl +++ b/importxml.pl @@ -913,7 +913,7 @@ sub process_bug { # Check everconfirmed my $everconfirmed; - if ($product->votes_to_confirm) { + if ($product->allows_unconfirmed) { $everconfirmed = $bug_fields{'everconfirmed'} || 0; } else { |