From 6cde6c12d6e09ec50bcc7b01e54d4b11052aedf5 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Mon, 29 Apr 2013 11:30:22 +0200 Subject: [PATCH] Bug 10118: Problem with diacritics on Pay an individual fine. Content-Type: text/plain; charset=utf-8 Adds decoding via utf8 flag of CGI. Actually a followup on report 6554. Test plan: Go to patron. Create manual invoice. Add diacritics in description. Go to Pay Fines. Click Pay on the line you added. Without this patch you should see a mangled character. With this patch it should be fine. --- members/paycollect.pl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/members/paycollect.pl b/members/paycollect.pl index 9828fb3..73ca746 100755 --- a/members/paycollect.pl +++ b/members/paycollect.pl @@ -22,7 +22,7 @@ use warnings; use C4::Context; use C4::Auth; use C4::Output; -use CGI; +use CGI qw/-utf8/; use C4::Members; use C4::Accounts; use C4::Koha; -- 1.7.7.6