@@ -, +, @@ koha.psgi --- misc/plack/koha.psgi | 5 +++++ 1 file changed, 5 insertions(+) --- a/misc/plack/koha.psgi +++ a/misc/plack/koha.psgi @@ -16,6 +16,11 @@ use CGI qw(-utf8 ); # we will lose -utf8 under plack Koha::Cache::Memory::Lite->flush(); return $q; }; + if (!defined($CGI::VERSION) || $CGI::VERSION < 4.08) { + *CGI::multi_param = \&CGI::param; + $CGI::LIST_CONTEXT_WARN = 0; + } + use warnings 'redefine'; } BEGIN { --