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

(-)a/debian/templates/plack.psgi (+1 lines)
Lines 44-49 use CGI qw(-utf8 ); # we will loose -utf8 under plack, otherwise Link Here
44
    *CGI::new = sub {
44
    *CGI::new = sub {
45
        my $q = $old_new->( @_ );
45
        my $q = $old_new->( @_ );
46
        $CGI::PARAM_UTF8 = 1;
46
        $CGI::PARAM_UTF8 = 1;
47
        C4::Context->clear_syspref_L1_cache();
47
        return $q;
48
        return $q;
48
    };
49
    };
49
}
50
}
(-)a/misc/plack/koha.psgi (-1 / +1 lines)
Lines 12-17 use CGI qw(-utf8 ); # we will loose -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
        C4::Context->clear_syspref_L1_cache();
15
        return $q;
16
        return $q;
16
    };
17
    };
17
}
18
}
18
- 

Return to bug 11998