diff options
author | jocuri%softhome.net <> | 2004-02-29 23:29:38 +0100 |
---|---|---|
committer | jocuri%softhome.net <> | 2004-02-29 23:29:38 +0100 |
commit | 69953362ae57fb936cc7b03cafa203176e0437c8 (patch) | |
tree | af427b448d072ee9e47eed7bcb20a6a014542205 | |
parent | 7a362671f63bc35164b16de0b7258739ab41a66c (diff) | |
download | bugzilla-69953362ae57fb936cc7b03cafa203176e0437c8.tar.gz bugzilla-69953362ae57fb936cc7b03cafa203176e0437c8.tar.xz |
Patch for bug 234898; start to use $cgi->param in queryhelp.cgi; patch by Teemu Mannermaa <wicked@etlicon.fi>; r=kiko, a=justdave.
-rwxr-xr-x | queryhelp.cgi | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/queryhelp.cgi b/queryhelp.cgi index 29407280f..60ebdd120 100755 --- a/queryhelp.cgi +++ b/queryhelp.cgi @@ -22,8 +22,6 @@ # Terry Weissman <terry@mozilla.org> # Tara Hernandez <tara@tequilarista.org> -use vars %::FORM; - use strict; use lib qw(.); @@ -37,8 +35,6 @@ GetVersionTable(); 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."); @@ -657,6 +653,7 @@ products being developed. Each product has its own components. $line_count = 0; $max_table_size = 50; my @products; +my $product; $tableheader = qq{ <p><table border=0><tr><td> <table border="1" width="100%" cellpadding="4" cellspacing="0"> |