View | Details | Raw Unified | Return to bug 16645
Collapse All | Expand All

(-)a/misc/plack/koha.psgi (-1 / +6 lines)
Lines 15-20 use CGI qw(-utf8 ); # we will lose -utf8 under plack Link Here
15
        Koha::Cache->flush_L1_cache();
15
        Koha::Cache->flush_L1_cache();
16
        return $q;
16
        return $q;
17
    };
17
    };
18
    if (!defined($CGI::VERSION) || $CGI::VERSION < 4.08) {
19
        no warnings 'redefine';
20
        *CGI::multi_param = \&CGI::param;
21
        use warnings 'redefine';
22
        $CGI::LIST_CONTEXT_WARN = 0;
23
    }
18
}
24
}
19
25
20
BEGIN {
26
BEGIN {
21
- 

Return to bug 16645