diff options
author | ivan <ivan> | 2009-04-27 23:02:17 +0000 |
---|---|---|
committer | ivan <ivan> | 2009-04-27 23:02:17 +0000 |
commit | 14ad99de9669443c9310d643707341663d55eec5 (patch) | |
tree | 016dadc0c3496a2a2825647cd7c4258ae93a5b6d | |
parent | dc58e4cddba3ff5ea1daadfbee7a7a3621715024 (diff) |
refuse to run w/CGI.pm 3.38. all lenny upgrades will need libcgi-pm-perl removed, suck
-rw-r--r-- | htetc/handler.pl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/htetc/handler.pl b/htetc/handler.pl index 7228ad5bb..1b3a21138 100644 --- a/htetc/handler.pl +++ b/htetc/handler.pl @@ -92,6 +92,13 @@ sub handler use vars qw( $cgi $p $fsurl); use vars qw( %session ); use CGI 3.29 qw(-private_tempfiles); #3.29 to fix RT attachment problems + + #breaks quick payment entry + #http://rt.cpan.org/Public/Bug/Display.html?id=37365 + die "CGI.pm v3.38 is broken, use any other version >= 3.29". + " (Debian 5.0? aptitude remove ligcgi-pm-perl)" + if $CGI::VERSION == 3.38; + #use CGI::Carp qw(fatalsToBrowser); use List::Util qw( max min ); use Date::Format; |