@@ -, +, @@ --- admin/preferences.pl | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) --- a/admin/preferences.pl +++ a/admin/preferences.pl @@ -21,7 +21,6 @@ use strict; use warnings; use CGI qw ( -utf8 ); -use Encode; use C4::Auth; use C4::Context; use C4::Koha; @@ -56,7 +55,7 @@ sub GetTab { local_currency => $local_currency, # currency code is used, because we do not know how a given currency is formatted. ); - return YAML::Syck::Load( Encode::decode('UTF-8',$tab_template->output()) ); + return YAML::Syck::Load( $tab_template->output() ); } sub _get_chunk { --