From 8149018f3a9c947c7ba13bde3966ff98e1b16216 Mon Sep 17 00:00:00 2001 From: acli Date: Sun, 29 Feb 2004 07:03:18 +0000 Subject: [PATCH] Fix charset problem reported by Benedict --- request.pl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/request.pl b/request.pl index 568f22174a..162d3a767a 100755 --- a/request.pl +++ b/request.pl @@ -26,6 +26,7 @@ use strict; use C4::Search; use C4::Output; +use C4::Interface::CGI::Output; use C4::Auth; use C4::Reserves2; use C4::Biblio; @@ -189,4 +190,7 @@ $template->param( optionloop =>\@optionloop, bib => $bib, title =>$dat->{title}); # printout the page -print $input->header(-expires=>'now'), $template->output; +print $input->header( + -type => C4::Interface::CGI::Output::guesstype($template->output), + -expires=>'now' +), $template->output; -- 2.39.5