From 7570657bc0f5e3d9fb19530fe2001a1ac180a980 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Mon, 10 Oct 2011 11:59:54 +0200 Subject: [PATCH] 6996 Encoding problem in opac-showmarc Content-Type: text/plain; charset="utf-8" Need to decode the output coming back from xslt processor in opac-showmarc. --- opac/opac-showmarc.pl | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/opac/opac-showmarc.pl b/opac/opac-showmarc.pl index 4475512..2531eb1 100755 --- a/opac/opac-showmarc.pl +++ b/opac/opac-showmarc.pl @@ -29,6 +29,7 @@ use warnings; # standard or CPAN modules used use CGI; +use Encode; # Koha modules used use C4::Context; @@ -79,8 +80,8 @@ if ($view eq 'card' || $view eq 'html') { my $stylesheet = $xslt->parse_stylesheet($style_doc); my $results = $stylesheet->transform($source); my $newxmlrecord = $stylesheet->output_string($results); - print $input->header(), $newxmlrecord; - exit; + $newxmlrecord = Encode::decode_utf8($newxmlrecord) unless utf8::is_utf8($newxmlrecord); + print $input->header(-charset => 'UTF-8'), $newxmlrecord; } else { $record =GetMarcBiblio($biblionumber) unless $record; $template->param( MARC_FORMATTED => $record->as_formatted ); -- 1.6.0.6