Skip Menu |

This queue is for tickets about the YATT CPAN distribution.

Report information
The Basics
Id: 108539
Status: new
Priority: 0/
Queue: YATT

People
Owner: Nobody in particular
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.0_9
Fixed in: (no value)



Subject: Compatibility with older CGI.pm versions
Here's a CGI.pm-related test failure: http://www.cpantesters.org/cpan/report/1d484776-6c21-1014-9f89-a7991bf9ec17 It seems that the new CGI::multi_param function is used here, which is not available in older (but better!) CGI.pm versions. My suggestion is to define multi_param if it's not there, so the module works with older and newer CGI.pm. Something like this (untested!): require CGI; if (!defined &CGI::multi_param) { *CGI::multi_param = \&CGI::param; }