diff options
author | Simon Green <sgreen@redhat.com> | 2014-01-21 09:29:22 +1000 |
---|---|---|
committer | Simon Green <sgreen@redhat.com> | 2014-01-21 09:29:22 +1000 |
commit | 91ae795be29e4ab48da994e1e33c21b2d3c524b5 (patch) | |
tree | a4fbe352c10b0814211f0c1aee79943a100f5598 /enter_bug.cgi | |
parent | e02e3bc792293af9460da9c9d6b9185b94c5307f (diff) | |
download | bugs-91ae795be29e4ab48da994e1e33c21b2d3c524b5.tar bugs-91ae795be29e4ab48da994e1e33c21b2d3c524b5.tar.gz bugs-91ae795be29e4ab48da994e1e33c21b2d3c524b5.tar.bz2 bugs-91ae795be29e4ab48da994e1e33c21b2d3c524b5.tar.xz bugs-91ae795be29e4ab48da994e1e33c21b2d3c524b5.zip |
Bug 913364 - Reuse preset values when navigation through enter_bug.cgi
r=glob, a=glob
Diffstat (limited to 'enter_bug.cgi')
-rwxr-xr-x | enter_bug.cgi | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/enter_bug.cgi b/enter_bug.cgi index 1769b464c..617fdde67 100755 --- a/enter_bug.cgi +++ b/enter_bug.cgi @@ -75,8 +75,6 @@ if ($product_name eq '') { $vars->{'classifications'} = [map {$_->{'object'}} @classifications]; $vars->{'target'} = "enter_bug.cgi"; - $vars->{'format'} = $cgi->param('format'); - $vars->{'cloned_bug_id'} = $cgi->param('cloned_bug_id'); print $cgi->header(); $template->process("global/choose-classification.html.tmpl", $vars) @@ -107,8 +105,6 @@ if ($product_name eq '') { elsif (scalar(@enterable_products) > 1) { $vars->{'classifications'} = \@classifications; $vars->{'target'} = "enter_bug.cgi"; - $vars->{'format'} = $cgi->param('format'); - $vars->{'cloned_bug_id'} = $cgi->param('cloned_bug_id'); print $cgi->header(); $template->process("global/choose-product.html.tmpl", $vars) |