diff options
author | ivan <ivan> | 2003-09-30 07:04:54 +0000 |
---|---|---|
committer | ivan <ivan> | 2003-09-30 07:04:54 +0000 |
commit | 5993bc956415cf285d630e0657d4a6e0642ebead (patch) | |
tree | 6d1cab9d68d21f6c96ca1aefb379032afc93e0d1 /htetc | |
parent | c3e5b694f98b424f9fe68b76450d1464ba7a0fec (diff) |
CGI.pm 2.47 required for ->upload() method
Diffstat (limited to 'htetc')
-rw-r--r-- | htetc/global.asa | 2 | ||||
-rw-r--r-- | htetc/handler.pl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/htetc/global.asa b/htetc/global.asa index f00ae57f5..ee5cfcb3c 100644 --- a/htetc/global.asa +++ b/htetc/global.asa @@ -4,7 +4,7 @@ BEGIN { eval "use Devel::AutoProfiler;"; } #only if installed... use strict; use vars qw( $cgi $p ); -use CGI; +use CGI 2.47; #use CGI::Carp qw(fatalsToBrowser); use Date::Format; use Date::Parse; diff --git a/htetc/handler.pl b/htetc/handler.pl index 1660cb3fa..b007353e3 100644 --- a/htetc/handler.pl +++ b/htetc/handler.pl @@ -62,7 +62,7 @@ sub handler { package HTML::Mason::Commands; use strict; use vars qw( $cgi $p ); - use CGI; + use CGI 2.47; #use CGI::Carp qw(fatalsToBrowser); use Date::Format; use Date::Parse; |