diff options
author | Andreas Koenig <a.koenig@mind.de> | 1997-04-17 13:36:28 +0200 |
---|---|---|
committer | Chip Salzenberg <chip@atlantic.net> | 1997-04-17 00:00:00 +0000 |
commit | fabdde38538cf589b606a8865ea32704f8cd60cd (patch) | |
tree | dbf21ed120c58a2419bdfb4dc958e03b5410a2ee /lib/CGI.pm | |
parent | 284c50cc3d3edaeea836b0696473b41df7e01cd4 (diff) | |
download | perl-fabdde38538cf589b606a8865ea32704f8cd60cd.tar.gz |
CGI.pm broke again
Somehow this line was lost during recent patching. It was in 2.32 but
not in 2.33 up.
p5p-msgid: 199704171136.NAA24859@anna.in-berlin.de
Diffstat (limited to 'lib/CGI.pm')
-rw-r--r-- | lib/CGI.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CGI.pm b/lib/CGI.pm index 30ad7a7bba..92c875be60 100644 --- a/lib/CGI.pm +++ b/lib/CGI.pm @@ -29,7 +29,7 @@ $AUTOLOAD_DEBUG=0; $NPH=0; $CGI::revision = '$Id: CGI.pm,v 2.34 1997/4/7 7:23 lstein Exp $'; -$CGI::VERSION='2.3401'; +$CGI::VERSION='2.3402'; # OVERRIDE THE OS HERE IF CGI.pm GUESSES WRONG # $OS = 'UNIX'; @@ -174,6 +174,7 @@ sub new { my($class,$initializer) = @_; my $self = {}; bless $self,ref $class || $class || $DefaultClass; + $CGI::DefaultClass->_reset_globals() if $MOD_PERL; $initializer = to_filehandle($initializer) if $initializer; $self->init($initializer); return $self; |