diff options
Diffstat (limited to 'AuthorizeNet.pm')
-rw-r--r-- | AuthorizeNet.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/AuthorizeNet.pm b/AuthorizeNet.pm index 00c8962..c48808e 100644 --- a/AuthorizeNet.pm +++ b/AuthorizeNet.pm @@ -1,11 +1,11 @@ package Business::OnlinePayment::AuthorizeNet; -# $Id: AuthorizeNet.pm,v 1.2 2001-11-14 21:44:07 ivan Exp $ +# $Id: AuthorizeNet.pm,v 1.3 2002-02-12 23:27:38 ivan Exp $ use strict; use Business::OnlinePayment; use Net::SSLeay qw/make_form post_https/; -use Text::CSV; +use Text::CSV_XS; use vars qw($VERSION @ISA @EXPORT @EXPORT_OK); require Exporter; @@ -132,7 +132,7 @@ sub submit { my $t = $self->path(); my($page,$server_response,%headers) = post_https($s,$p,$t,'',$pd); - my $csv = new Text::CSV(); + my $csv = new Text::CSV_XS(); $csv->parse($page); my @col = $csv->fields(); |