From: Don Armstrong Date: Thu, 14 Mar 2013 21:29:23 +0000 (-0700) Subject: Merge branch 'don/fix_encoding' X-Git-Tag: release/2.6.0~308^2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=562a7c58b49da86ab3e63855952f9ebc3fdad4f1;hp=759eb8a67ce40a4b881cc058c25a747e851669b7;p=debbugs.git Merge branch 'don/fix_encoding' --- diff --git a/Debbugs/Control.pm b/Debbugs/Control.pm index 4b3a02a..0390ba7 100644 --- a/Debbugs/Control.pm +++ b/Debbugs/Control.pm @@ -3467,7 +3467,7 @@ sub append_action_to_log{ $msg = ''; if ((ref($param{message}) and @{$param{message}}) or length($param{message})) { push @records, {type => exists $param{recips}?'recips':'incoming-recv', - exists $param{recips}?(recips => [make_list($param{recips})]):(), + exists $param{recips}?(recips => [map {encode_utf8_safely($_)} make_list($param{recips})]):(), text => join('',make_list($param{message})), }; }