diff options
author | ivan <ivan> | 2003-08-11 05:05:57 +0000 |
---|---|---|
committer | ivan <ivan> | 2003-08-11 05:05:57 +0000 |
commit | d904bbb8d30c306e0c7055004b177b43340ab5cf (patch) | |
tree | 3ab07f29f8bcbefca45f5d53407db9190f79719a | |
parent | db7e7cc40ad5ce449e8ca6d19205872faaca324e (diff) |
-rw-r--r-- | Changes | 8 | ||||
-rw-r--r-- | LinkPoint.pm | 8 | ||||
-rw-r--r-- | README | 5 |
3 files changed, 12 insertions, 9 deletions
@@ -1,14 +1,16 @@ Revision history for Perl extension Business::OnlinePayment::LinkPoint. -0.02 Sun Aug 10 21:57:16 PDT 2003 +0.03 Sun Aug 10 21:57:16 PDT 2003 + - better error message when LinkPoint doesn't return a statusMessage + - update for LinkPoint API 2.6 + +0.02 Tue Aug 13 2002 - quiet "Use of uninitialized value" warnings from lperl.pm - eliminate warnings about redefined subroutines (and do so in a 5.005-friendly way) - better URLs for linkpoint perl wrapper - don't spew debugging output by default - move load.t test from t1/ to t2/ - - better error message when LinkPoint doesn't return a statusMessage - - update for LinkPoint API 2.6 0.01 Wed Nov 21 04:00:26 2001 - original version; created by ivan 1.0 diff --git a/LinkPoint.pm b/LinkPoint.pm index 93a49e6..8a7dfa9 100644 --- a/LinkPoint.pm +++ b/LinkPoint.pm @@ -1,6 +1,6 @@ package Business::OnlinePayment::LinkPoint; -# $Id: LinkPoint.pm,v 1.9 2003-05-13 11:22:36 ivan Exp $ +# $Id: LinkPoint.pm,v 1.10 2003-08-11 05:05:57 ivan Exp $ use strict; use vars qw($VERSION @ISA @EXPORT @EXPORT_OK); @@ -13,7 +13,7 @@ require Exporter; @ISA = qw(Exporter AutoLoader Business::OnlinePayment); @EXPORT = qw(); @EXPORT_OK = qw(); -$VERSION = '0.02'; +$VERSION = '0.03'; use lperl; #2.6; #lperl.pm from LinkPoint $LPERL::VERSION =~ /^(\d+\.\d+)/ @@ -184,7 +184,7 @@ __END__ =head1 NAME -Business::OnlinePayment::LinkPoint - LinkPoint backend for Business::OnlinePayment +Business::OnlinePayment::LinkPoint - LinkPoint (Cardservice) backend for Business::OnlinePayment =head1 SYNOPSIS @@ -232,7 +232,7 @@ For detailed information see L<Business::OnlinePayment>. This module implements an interface to the LinkPoint Perl Wrapper http://www.linkpoint.com/product_solutions/internet/lperl/lperl_main.html -Version 0.2 of this module has been updated for the LinkPoint Perl Wrapper +Version 0.3 of this module has been updated for the LinkPoint Perl Wrapper version 2.6. =head1 BUGS @@ -3,8 +3,9 @@ All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. This is Business::OnlinePayment::LinkPoint, an Business::OnlinePayment -backend module for LinkPoint. It is only useful if you have a merchant account -with LinkPoint: http://www.linkpoint.com/ and the "LinkPoint Perl Wrapper": +backend module for LinkPoint. It is only useful if you have a merchant +account with LinkPoint (Cardservice): http://www.linkpoint.com/ and the +"LinkPoint Perl Wrapper": http://www.linkpoint.com/product_solutions/internet/lperl/lperl_main.html It is based on Business::OnlinePayment::AuthorizeNet written by Jason Kohles. |