Skip to content

Commit

Permalink
Don't try to read data at all when POST > POST_MAX; Fixed bug that ca…
Browse files Browse the repository at this point in the history
…used cgi->param('name',undef,'value') to unset param('name') entirely.; Fixed bug in which upload() sometimes returns empty. (CPAN bug #12694); Incorporated patch from BURAK@cpan.org to support HTTPcookies (CPAN bug 21019).
  • Loading branch information
lstein committed Aug 21, 2006
1 parent 078738e commit 00fb5b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CGI.pm
Expand Up @@ -18,8 +18,8 @@ use Carp 'croak';
# The most recent version and complete docs are available at:
# http://stein.cshl.org/WWW/software/CGI/

$CGI::revision = '$Id: CGI.pm,v 1.212 2006-08-17 23:07:14 lstein Exp $';
$CGI::VERSION='3.22';
$CGI::revision = '$Id: CGI.pm,v 1.213 2006-08-21 19:09:10 lstein Exp $';
$CGI::VERSION='3.21';

# HARD-CODED LOCATION FOR FILE UPLOAD TEMPORARY FILES.
# UNCOMMENT THIS ONLY IF YOU KNOW WHAT YOU'RE DOING.
Expand Down
6 changes: 2 additions & 4 deletions Changes
@@ -1,10 +1,8 @@
Version 3.22
1. Fixed bug in which upload() sometimes returns empty. (CPAN bug #12694).
2. Incorporated patch from BURAK@cpan.org to support HTTPcookies (CPAN bug 21019).

Version 3.21
1. Don't try to read data at all when POST > $POST_MAX.
2. Fixed bug that caused $cgi->param('name',undef,'value') to unset param('name') entirely.
3. Fixed bug in which upload() sometimes returns empty. (CPAN bug #12694).
4. Incorporated patch from BURAK@cpan.org to support HTTPcookies (CPAN bug 21019).

Version 3.20
1. Patch from David Wheeler for CGI::Cookie->bake(). Uses mod_perl headers_out->add()
Expand Down

0 comments on commit 00fb5b9

Please sign in to comment.