From 07731037ee453fe3537c257b07be9c49b66e8ced Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9rick=20Capovilla?= Date: Mon, 7 Feb 2011 10:35:56 -0500 Subject: [PATCH] Bug 5616: Corrects an utf-8 encoding problem in cardviews Signed-off-by: Owen Leonard Signed-off-by: Chris Cormack --- catalogue/showmarc.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/catalogue/showmarc.pl b/catalogue/showmarc.pl index d0011ba305..d316833c8a 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 { -- 2.39.5