From ee40f753d44d11d6e553dc3ed79fc2373b0ffa75 Mon Sep 17 00:00:00 2001 From: acli Date: Sat, 25 Jan 2003 20:15:11 +0000 Subject: [PATCH] Handle non-latin1 charsets --- maninvoice.pl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/maninvoice.pl b/maninvoice.pl index 1836fdb5b2..5719c4d7c3 100755 --- a/maninvoice.pl +++ b/maninvoice.pl @@ -24,6 +24,7 @@ use strict; use C4::Auth; use C4::Output; +use C4::Charset; use CGI; use C4::Search; use C4::Accounts2; @@ -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.5