diff options
author | lpsolit%gmail.com <> | 2006-04-03 04:07:12 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-04-03 04:07:12 +0200 |
commit | 8604641c8fbc4518952208b7325bee22bf6cfe21 (patch) | |
tree | 02e4f5eef46f0108ba7773d7b6635a21f1981ada /post_bug.cgi | |
parent | 725e716dc49ecc1d27eae7431f01d2ff193b5286 (diff) | |
download | bugzilla-8604641c8fbc4518952208b7325bee22bf6cfe21.tar.gz bugzilla-8604641c8fbc4518952208b7325bee22bf6cfe21.tar.xz |
Bug 330698: Remove $::components, @::enterable_products and $::classifications (and some others) - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat a=justdave
Diffstat (limited to 'post_bug.cgi')
-rwxr-xr-x | post_bug.cgi | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/post_bug.cgi b/post_bug.cgi index dd699e668..4fb66d316 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -40,12 +40,10 @@ use Bugzilla::Keyword; # "use vars" chokes on me when I try it here. sub sillyness { my $zz; - $zz = %::components; $zz = @::legal_opsys; $zz = @::legal_platform; $zz = @::legal_priority; $zz = @::legal_severity; - $zz = %::target_milestone; } my $user = Bugzilla->login(LOGIN_REQUIRED); @@ -227,9 +225,10 @@ check_field('op_sys', scalar $cgi->param('op_sys'), \@::legal_opsys) check_field('bug_status', scalar $cgi->param('bug_status'), ['UNCONFIRMED', 'NEW']); check_field('version', scalar $cgi->param('version'), [map($_->name, @{$prod_obj->versions})]); -check_field('component', scalar $cgi->param('component'), $::components{$product}); +check_field('component', scalar $cgi->param('component'), + [map($_->name, @{$prod_obj->components})]); check_field('target_milestone', scalar $cgi->param('target_milestone'), - $::target_milestone{$product}); + [map($_->name, @{$prod_obj->milestones})]); foreach my $field_name ('assigned_to', 'bug_file_loc', 'comment') { defined($cgi->param($field_name)) |