From: khoff Date: Wed, 11 Apr 2007 20:38:32 +0000 (+0000) Subject: $csv->error is not a method. X-Git-Tag: Business-OnlinePayment-Skipjack_0_02~2 X-Git-Url: http://git.freeside.biz/gitweb/?p=Business-OnlinePayment-Skipjack.git;a=commitdiff_plain;h=fc86c68c3af2bc3e5fcf870f3fc026e0b6069f93;hp=512974fd3d59690fe5848c5564381d2c8f53f7c1 $csv->error is not a method. --- diff --git a/Skipjack.pm b/Skipjack.pm index c0bf838..5c6565e 100644 --- a/Skipjack.pm +++ b/Skipjack.pm @@ -429,12 +429,14 @@ sub parse_SJAPI_TransactionChangeStatusRequest my @records = split(/\r\n/, $page); - $csv->parse(shift @records) or die $csv->error; + $csv->parse(shift @records) + or die "CSV parse failed on " . $csv->error_input; @output{@CHANGE_STATUS_RESPONSE} = $csv->fields(); # we only handle a single record reponse, as that's all this module will # currently submit... - $csv->parse(shift @records) or die $csv->error; + $csv->parse(shift @records) + or die "CSV parse failed on " . $csv->error_input; @output{@CHANGE_STATUS_RESPONSE_RECORD} = $csv->fields(); return %output; @@ -451,12 +453,15 @@ sub parse_SJAPI_TransactionStatusRequest my @records = split(/\r\n/, $page); - $csv->parse(shift @records) or die $csv->error; + #$csv->parse(shift @records) + $csv->parse(shift @records) + or die "CSV parse failed on " . $csv->error_input; @output{@GET_STATUS_RESPONSE} = $csv->fields(); # we only handle a single record reponse, as that's all this module will # currently submit... - $csv->parse(shift @records) or die $csv->error; + $csv->parse(shift @records) + or die "CSV parse failed on " . $csv->error_input; @output{@GET_STATUS_RESPONSE_RECORD} = $csv->fields(); return %output;