From c38bdb0d0223335fa0833e244396721cbb9c242d Mon Sep 17 00:00:00 2001 From: acli Date: Wed, 10 Mar 2004 03:02:43 +0000 Subject: [PATCH] Fixed charset conversion problem reported by Benedict. --- export/marc.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/export/marc.pl b/export/marc.pl index 0a2f5ce68d..1ea7b32d24 100755 --- a/export/marc.pl +++ b/export/marc.pl @@ -3,6 +3,8 @@ use HTML::Template; use strict; require Exporter; use C4::Database; +use C4::Auth; +use C4::Interface::CGI::Output; use C4::Output; # contains gettemplate use C4::Biblio; use CGI; @@ -37,6 +39,6 @@ if ($op eq "export") { flagsrequired => {parameters => 1}, debug => 1, }); - print $query->header(-cookie => $cookie), $template->output; + output_html_with_http_headers $query, $cookie, $template->output; } -- 2.39.5