Commit 69953362 authored by jocuri%softhome.net's avatar jocuri%softhome.net

Patch for bug 234898; start to use $cgi->param in queryhelp.cgi; patch by Teemu…

Patch for bug 234898; start to use $cgi->param in queryhelp.cgi; patch by Teemu Mannermaa <wicked@etlicon.fi>; r=kiko, a=justdave.
parent 7a362671
...@@ -22,8 +22,6 @@ ...@@ -22,8 +22,6 @@
# Terry Weissman <terry@mozilla.org> # Terry Weissman <terry@mozilla.org>
# Tara Hernandez <tara@tequilarista.org> # Tara Hernandez <tara@tequilarista.org>
use vars %::FORM;
use strict; use strict;
use lib qw(.); use lib qw(.);
...@@ -37,8 +35,6 @@ GetVersionTable(); ...@@ -37,8 +35,6 @@ GetVersionTable();
print Bugzilla->cgi->header(); print Bugzilla->cgi->header();
my $product = $::FORM{'product'};
PutHeader("Bugzilla Query Page Help","Help", "This page is to help you learn how to use the query form."); PutHeader("Bugzilla Query Page Help","Help", "This page is to help you learn how to use the query form.");
...@@ -657,6 +653,7 @@ products being developed. Each product has its own components. ...@@ -657,6 +653,7 @@ products being developed. Each product has its own components.
$line_count = 0; $line_count = 0;
$max_table_size = 50; $max_table_size = 50;
my @products; my @products;
my $product;
$tableheader = qq{ <p><table border=0><tr><td> $tableheader = qq{ <p><table border=0><tr><td>
<table border="1" width="100%" cellpadding="4" cellspacing="0"> <table border="1" width="100%" cellpadding="4" cellspacing="0">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment