From 52347953f0768efe3539bdc93feedcc67177ae6d Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 14 Nov 2013 11:31:23 +0100 Subject: [PATCH] Bug 10605: Encoding issue on sending a basket (INTRANET) Same fix for the staff interface. --- basket/sendbasket.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/basket/sendbasket.pl b/basket/sendbasket.pl index 3f57de2..a50bb50 100755 --- a/basket/sendbasket.pl +++ b/basket/sendbasket.pl @@ -131,8 +131,9 @@ if ( $email_add ) { } if ( $template_res =~ /(.*)/s ) { - $body = encode_qp($1); + $body = $1; $body =~ s|\n?(.*)\n?|$1|; + $body = encode("UTF-8", encode_qp(decode("UTF-8", $body))); } my $boundary = "====" . time() . "===="; -- 1.7.10.4