diff options
author | fbriere <fbriere> | 2006-02-17 03:27:52 +0000 |
---|---|---|
committer | fbriere <fbriere> | 2006-02-17 03:27:52 +0000 |
commit | ba6f01061a4f1643c9683238227af9196857537e (patch) | |
tree | 477674e874190425ef0b246e72a2f25245b2c20d | |
parent | a9053abd282a2c574bb03833db29b39ed5cac14b (diff) |
Work around bug #17687
-rwxr-xr-x | InternetSecure.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/InternetSecure.pm b/InternetSecure.pm index dec9ee9..f4e68da 100755 --- a/InternetSecure.pm +++ b/InternetSecure.pm @@ -239,6 +239,8 @@ sub parse_response { my ($self, $response) = @_; $self->server_response($response); + + local $/ = "\n"; # Make sure to avoid bug #17687 $response = xml_in($response, ForceArray => [qw(product flag)], |