From 7e49fbe58ed0280c0648e705e5ceddbf0839032c Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Wed, 28 May 2014 14:43:51 +0200 Subject: [PATCH] Bug 12279: Counterpatch touching only preferences.pl Content-Type: text/plain; charset=utf-8 Instead of a new routine in Templates.pm that actually only decodes the data, I would recommend to put this temporary fix into preferences.pl. Bug 11944 should provide the real fix.. --- admin/preferences.pl | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/admin/preferences.pl b/admin/preferences.pl index 8bcdb0a..1513adc 100755 --- a/admin/preferences.pl +++ b/admin/preferences.pl @@ -21,6 +21,7 @@ use strict; use warnings; use CGI; +use Encode; use C4::Auth; use C4::Context; use C4::Koha; @@ -54,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( $tab_template->output() ); + return YAML::Syck::Load( Encode::decode('UTF-8',$tab_template->output()) ); } sub _get_chunk { -- 1.7.7.6