summaryrefslogtreecommitdiff
path: root/AuthorizeNet.pm
diff options
context:
space:
mode:
authorivan <ivan>2002-02-12 23:27:38 +0000
committerivan <ivan>2002-02-12 23:27:38 +0000
commit7faca106dd4192ecd906949e9a4aca08b582d04b (patch)
treedfcb79efeb3935e586b9742ee607a1af53e499c5 /AuthorizeNet.pm
parentba95dc2cdb193b513fcdd4ad33ae4b523ec0f32a (diff)
s/CSV/CSV_XS/g
Diffstat (limited to 'AuthorizeNet.pm')
-rw-r--r--AuthorizeNet.pm6
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();