@@ -, +, @@ --- debian/templates/plack.psgi | 1 + misc/plack/koha.psgi | 1 + 2 files changed, 2 insertions(+) --- a/debian/templates/plack.psgi +++ a/debian/templates/plack.psgi @@ -44,6 +44,7 @@ use CGI qw(-utf8 ); # we will loose -utf8 under plack, otherwise *CGI::new = sub { my $q = $old_new->( @_ ); $CGI::PARAM_UTF8 = 1; + C4::Context->clear_syspref_L1_cache(); return $q; }; } --- a/misc/plack/koha.psgi +++ a/misc/plack/koha.psgi @@ -12,6 +12,7 @@ use CGI qw(-utf8 ); # we will loose -utf8 under plack *CGI::new = sub { my $q = $old_new->( @_ ); $CGI::PARAM_UTF8 = 1; + C4::Context->clear_syspref_L1_cache(); return $q; }; } --