From c0c4eb4f50693c942ba49cf6e77b2d7530820669 Mon Sep 17 00:00:00 2001 From: Christopher Hall Date: Tue, 25 Jan 2011 15:14:52 +1300 Subject: [PATCH 1/1] fixed XSLT utf8 bugs --- C4/Templates.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/C4/Templates.pm b/C4/Templates.pm index a3acd0821f..8467b9c08d 100644 --- a/C4/Templates.pm +++ b/C4/Templates.pm @@ -109,6 +109,7 @@ sub param{ while(@_){ my $key = shift; my $val = shift; + utf8::decode($val) if $key eq "XSLTBloc"; $self->{VARS}->{$key} = $val; } } -- 2.11.0