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

(-)a/misc/plack/koha.psgi (-2 / +1 lines)
Lines 12-18 use CGI qw(-utf8 ); # we will lose -utf8 under plack Link Here
12
    *CGI::new = sub {
12
    *CGI::new = sub {
13
        my $q = $old_new->( @_ );
13
        my $q = $old_new->( @_ );
14
        $CGI::PARAM_UTF8 = 1;
14
        $CGI::PARAM_UTF8 = 1;
15
        Koha::Cache->flush_L1_if_needed();
15
        Koha::Cache->get_instance->flush_L1_if_needed();
16
        return $q;
16
        return $q;
17
    };
17
    };
18
}
18
}
19
- 

Return to bug 16140