summaryrefslogtreecommitdiffstats
path: root/config.cgi
diff options
context:
space:
mode:
authorjocuri%softhome.net <>2004-03-27 06:00:11 +0100
committerjocuri%softhome.net <>2004-03-27 06:00:11 +0100
commitc0fc50d35b1e3320b28b281c16489f78babc5abb (patch)
tree588957a4a2130089f67533b55ab3a7b7c6c53106 /config.cgi
parentcecc6432218b8a3ca3dd07e6792de99e88be4683 (diff)
downloadbugzilla-c0fc50d35b1e3320b28b281c16489f78babc5abb.tar.gz
bugzilla-c0fc50d35b1e3320b28b281c16489f78babc5abb.tar.xz
Patch for bug 237369: implement relatively simple changes from %FORM to $cgi->param variable; patch by Teemu Mannermaa <wicked@etlicon.fi>; r=kiko, justdave; a=justdave.
Diffstat (limited to 'config.cgi')
-rwxr-xr-xconfig.cgi6
1 files changed, 3 insertions, 3 deletions
diff --git a/config.cgi b/config.cgi
index a02ff8c7b..f7cb95ee5 100755
--- a/config.cgi
+++ b/config.cgi
@@ -53,8 +53,6 @@ use vars
@legal_target_milestone
@legal_versions
@legal_keywords
-
- %FORM
);
# Use the global template variables defined in globals.pl
@@ -92,7 +90,9 @@ $vars->{'field'} = [GetFieldDefs()];
# Determine how the user would like to receive the output;
# default is JavaScript.
-my $format = GetFormat("config", $::FORM{'format'}, $::FORM{'ctype'} || "js");
+my $cgi = Bugzilla->cgi;
+my $format = GetFormat("config", scalar($cgi->param('format')),
+ scalar($cgi->param('ctype')) || "js");
# Return HTTP headers.
print "Content-Type: $format->{'ctype'}\n\n";