From 216136a9a2aed14a099b9cc931c5b21a29c04894 Mon Sep 17 00:00:00 2001 From: jeff Date: Fri, 19 Jan 2007 23:00:36 +0000 Subject: [PATCH] work around CSV brokenness --- httemplate/misc/download-batch.cgi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/httemplate/misc/download-batch.cgi b/httemplate/misc/download-batch.cgi index 74805b2a8..371f17d19 100644 --- a/httemplate/misc/download-batch.cgi +++ b/httemplate/misc/download-batch.cgi @@ -120,8 +120,8 @@ % % } elsif ($format eq "csv-chase_canada-E-xactBatch"){ % -% -<% $cust_pay_batch->paybatchnum %>,<% $cust_pay_batch->custnum %>,<% $cust_pay_batch->invnum %>,"<% $cust_pay_batch->payname %>",01,<% $cust_pay_batch->payinfo %>,<% $cust_pay_batch->amount %>,<% $exp %>,, +% my $payname=$cust_pay_batch->payname; $payname =~ tr/",/ /; #payinfo too? :P +<% $cust_pay_batch->paybatchnum %>,<% $cust_pay_batch->custnum %>,<% $cust_pay_batch->invnum %>,"<% $payname %>",01,<% $cust_pay_batch->payinfo %>,<% $cust_pay_batch->amount %>,<% $exp %>,, % % % } else { -- 2.11.0