summaryrefslogtreecommitdiffstats
path: root/CGI.pl
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2005-04-10 08:18:16 +0200
committerlpsolit%gmail.com <>2005-04-10 08:18:16 +0200
commitc15ee7a4d566c9e4911ac0cc0e94edb8d357709d (patch)
tree5c84986f432a6da31e277c95e0da72bf9c8b3608 /CGI.pl
parentadd735039c2d148077d5a7baca1a36f50f5bfab3 (diff)
downloadbugzilla-c15ee7a4d566c9e4911ac0cc0e94edb8d357709d.tar.gz
bugzilla-c15ee7a4d566c9e4911ac0cc0e94edb8d357709d.tar.xz
Bug 225818: %FORM, %MFORM, and %COOKIE need to go away, in favor of the CGI methods - Patch by Teemu Mannermaa <wicked@etlicon.fi> r=LpSolit a=myk
Diffstat (limited to 'CGI.pl')
-rw-r--r--CGI.pl12
1 files changed, 0 insertions, 12 deletions
diff --git a/CGI.pl b/CGI.pl
index 7ac46ddd5..1295a5baf 100644
--- a/CGI.pl
+++ b/CGI.pl
@@ -401,18 +401,6 @@ use Bugzilla;
# XXX - mod_perl - reset this between runs
$::cgi = Bugzilla->cgi;
-# Set up stuff for compatibility with the old CGI.pl code
-# This code will be removed as soon as possible, in favour of
-# using the CGI.pm stuff directly
-
-# XXX - mod_perl - reset these between runs
-
-foreach my $name ($::cgi->param()) {
- my @val = $::cgi->param($name);
- $::FORM{$name} = join('', @val);
- $::MFORM{$name} = \@val;
-}
-
$::buffer = $::cgi->query_string();
# This could be needed in any CGI, so we set it here.