summaryrefslogtreecommitdiffstats
path: root/CGI.pl
diff options
context:
space:
mode:
authorkiko%async.com.br <>2004-07-29 11:45:37 +0200
committerkiko%async.com.br <>2004-07-29 11:45:37 +0200
commit39633788a33cbe86b5ebc292fb18652fdc702e46 (patch)
tree7fda181b8cc91c3dc7cab8994696467de5a31204 /CGI.pl
parent1176bd8d61a55297707bf28810a9fcea06e82ec5 (diff)
downloadbugzilla-39633788a33cbe86b5ebc292fb18652fdc702e46.tar.gz
bugzilla-39633788a33cbe86b5ebc292fb18652fdc702e46.tar.xz
Fix for bug 236678: Clean up access to COOKIE global. Murder the last
remaining places in the tree where COOKIE is used; includes a rather thorough cleanup of Bugzilla::Bug->user and a minor doc update. r=joel, a=justdave.
Diffstat (limited to 'CGI.pl')
-rw-r--r--CGI.pl4
1 files changed, 0 insertions, 4 deletions
diff --git a/CGI.pl b/CGI.pl
index 94e727f08..bb271cf94 100644
--- a/CGI.pl
+++ b/CGI.pl
@@ -421,10 +421,6 @@ foreach my $name ($::cgi->param()) {
$::buffer = $::cgi->query_string();
-foreach my $name ($::cgi->cookie()) {
- $::COOKIE{$name} = $::cgi->cookie($name);
-}
-
# This could be needed in any CGI, so we set it here.
$vars->{'help'} = $::cgi->param('help') ? 1 : 0;