in reply to Re^2: CGI::param called in list context from package
in thread CGI::param called in list context from package
A ha! It looks like CGI::Session is calling ->param in list context with arguments:
https://metacpan.org/source/MARKSTOS/CGI-Session-4.48/lib/CGI/Session.pm#L364
The temp solution to this is to set the following in your code:
$CGI::LIST_CONTEXT_WARN = 0
An issue needs to be raised against CGI::Session to change it to use multi_param or switch off the warning. The slight irony is that i took over maintenance of CGI from Mark, the current author of CGI::Session...
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^4: CGI::param called in list context from package
by leej (Scribe) on Oct 27, 2014 at 15:27 UTC | |
by perlron (Pilgrim) on Oct 27, 2014 at 15:41 UTC | |
by leej (Scribe) on Oct 27, 2014 at 16:00 UTC | |
Re^4: CGI::param called in list context from package
by perlron (Pilgrim) on Oct 27, 2014 at 15:38 UTC | |
by leej (Scribe) on Oct 27, 2014 at 15:56 UTC | |
by perlron (Pilgrim) on Oct 28, 2014 at 07:21 UTC | |
Re^4: CGI::param called in list context from package
by Anonymous Monk on Feb 05, 2015 at 13:06 UTC |
In Section
Seekers of Perl Wisdom