diff options
author | ivan <ivan> | 2004-10-20 10:02:54 +0000 |
---|---|---|
committer | ivan <ivan> | 2004-10-20 10:02:54 +0000 |
commit | f2454fa86f1bc49313933a4a6c38998fa369a42d (patch) | |
tree | 6283c497b0c77b999962fdbcf7168c0330ee6411 /AuthorizeNet.pm | |
parent | cbadf1a247c85726313b9f187a488bb2147bec83 (diff) |
Ask for ',' delimiter and '"' quote explicitly to prevent problems when a merchant has them configured differently
Diffstat (limited to 'AuthorizeNet.pm')
-rw-r--r-- | AuthorizeNet.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/AuthorizeNet.pm b/AuthorizeNet.pm index abe5f7b..351d269 100644 --- a/AuthorizeNet.pm +++ b/AuthorizeNet.pm @@ -12,7 +12,7 @@ require Exporter; @ISA = qw(Exporter AutoLoader Business::OnlinePayment); @EXPORT = qw(); @EXPORT_OK = qw(); -$VERSION = '3.14'; +$VERSION = '3.15'; sub set_defaults { my $self = shift; @@ -191,6 +191,8 @@ sub submit { x_Currency_Code x_Trans_ID/); $post_data{'x_Test_Request'} = $self->test_transaction()?"TRUE":"FALSE"; $post_data{'x_ADC_Delim_Data'} = 'TRUE'; + $post_data{'x_delim_char'} = ','; + $post_data{'x_encap_char'} = '"'; $post_data{'x_ADC_URL'} = 'FALSE'; $post_data{'x_Version'} = '3.1'; |