From a78a96c9c0e79d51bf2fd529a669677f07295e02 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Fr=C3=A9d=C3=A9rick=20Capovilla?= Date: Fri, 21 Jan 2011 12:11:09 -0500 Subject: [PATCH] Corrects an utf-8 encoding problem in cardviews --- catalogue/showmarc.pl | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/catalogue/showmarc.pl b/catalogue/showmarc.pl index d0011ba..d316833 100755 --- a/catalogue/showmarc.pl +++ b/catalogue/showmarc.pl @@ -79,6 +79,7 @@ my $results = $stylesheet->transform($source); my $newxmlrecord = $stylesheet->output_string($results); #warn $newxmlrecord; print "Content-type: text/html\n\n"; +utf8::encode($newxmlrecord); print $newxmlrecord; } else { -- 1.5.6.5