@@ -, +, @@ --- misc/admin/koha-preferences | 1 + misc/plack/koha.psgi | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) --- a/misc/admin/koha-preferences +++ a/misc/admin/koha-preferences @@ -125,6 +125,7 @@ sub SetPreferences { _set_preference( $row->{'variable'}, $preferences{$row->{'variable'}} ); } + # FIXME This may be not needed C4::Context->clear_syspref_cache(); } --- a/misc/plack/koha.psgi +++ a/misc/plack/koha.psgi @@ -12,7 +12,6 @@ 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_cache(); return $q; }; } --