s/CSV/CSV_XS/g
authorivan <ivan>
Tue, 12 Feb 2002 23:27:38 +0000 (23:27 +0000)
committerivan <ivan>
Tue, 12 Feb 2002 23:27:38 +0000 (23:27 +0000)
AuthorizeNet.pm

index 00c8962..c48808e 100644 (file)
@@ -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();