From: Christopher Hall Date: Tue, 25 Jan 2011 02:14:52 +0000 (+1300) Subject: fixed XSLT utf8 bugs X-Git-Tag: v3.04.00~208 X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=commitdiff_plain;h=c0c4eb4f50693c942ba49cf6e77b2d7530820669;p=koha-ffzg.git fixed XSLT utf8 bugs --- 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; } }