From 5de2c28522463bdf8da5f061119794799ea147b6 Mon Sep 17 00:00:00 2001 From: fbriere Date: Sat, 18 Feb 2006 06:01:35 +0000 Subject: [PATCH] Let's not encode high-bit ISO-8859-1 characters --- InternetSecure.pm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/InternetSecure.pm b/InternetSecure.pm index cb6d00e..b9ca589 100755 --- a/InternetSecure.pm +++ b/InternetSecure.pm @@ -210,13 +210,15 @@ sub to_xml { ); } - xml_out(\%data, + # The encode() is somewhat of a NOOP, but XML::Simple has some issues + # with the utf8 flag. + encode('ISO-8859-1', xml_out(\%data, NoAttr => 1, - NumericEscape => 2, + NumericEscape => 1, RootName => 'TranxRequest', SuppressEmpty => undef, XMLDecl => '', - ); + )); } # Map the various fields from the response, and put their values into our -- 2.11.0