diff options
author | travis%sedsystems.ca <> | 2005-02-09 00:22:25 +0000 |
---|---|---|
committer | travis%sedsystems.ca <> | 2005-02-09 00:22:25 +0000 |
commit | c0df359943e8b746f02f5c43d25e5ffea99f8d19 (patch) | |
tree | c6245cd227c142f81d5c136576af06189d132a32 /editproducts.cgi | |
parent | d286752d0525b9bf8e6617b332aa8b3638212fc3 (diff) | |
download | bugs-c0df359943e8b746f02f5c43d25e5ffea99f8d19.tar bugs-c0df359943e8b746f02f5c43d25e5ffea99f8d19.tar.gz bugs-c0df359943e8b746f02f5c43d25e5ffea99f8d19.tar.bz2 bugs-c0df359943e8b746f02f5c43d25e5ffea99f8d19.tar.xz bugs-c0df359943e8b746f02f5c43d25e5ffea99f8d19.zip |
Bug 276838 : Eliminate use of $::unconfirmedstate
Patch by Max Kanat-Alexander <mkanat@kerio.com> r=wurblzap a=justdave
Diffstat (limited to 'editproducts.cgi')
-rwxr-xr-x | editproducts.cgi | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/editproducts.cgi b/editproducts.cgi index 8fe1a5ec5..d619909ae 100755 --- a/editproducts.cgi +++ b/editproducts.cgi @@ -44,7 +44,6 @@ use vars qw(@legal_bug_status @legal_resolution); sub sillyness { my $zz; $zz = %::MFORM; - $zz = $::unconfirmedstate; } my %ctl = ( @@ -1435,7 +1434,7 @@ if ($action eq 'update') { # 3. enough votes to confirm SendSQL("SELECT bug_id FROM bugs " . "WHERE product_id = $product_id " . - " AND bug_status = '$::unconfirmedstate' " . + " AND bug_status = 'UNCONFIRMED' " . " AND votes >= $votestoconfirm"); if (MoreSQLData()) { print "<br>Checking unconfirmed bugs in this product for any which now have sufficient votes."; |