From 92bb8348e77194aff7ebf66815314ce958fa7369 Mon Sep 17 00:00:00 2001 From: acli Date: Sat, 25 Jan 2003 20:18:45 +0000 Subject: [PATCH] Handle non-latin1 charset --- mancredit.pl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mancredit.pl b/mancredit.pl index c8bc167568..90b5356dc4 100755 --- a/mancredit.pl +++ b/mancredit.pl @@ -24,6 +24,7 @@ use strict; use C4::Auth; use C4::Output; +use C4::Charset; use CGI; use HTML::Template; use C4::Search; @@ -53,6 +54,9 @@ if ($add){ debug => 1, }); $template->param( bornum => $bornum); - print $input->header(-cookie => $cookie),$template->output; + print $input->header( + -type => guesstype($template->output), + -cookie => $cookie + ),$template->output; } -- 2.39.2