diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-04-24 14:45:12 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-04-24 14:45:12 -0700 |
commit | 327f376d26a38ae2f1a02ca9a53fad43464b087b (patch) | |
tree | 33375a01c88c28a0fdea1947d8e3040a3f612025 | |
parent | c88c21a1313cf47b46d9bbd5d992a69e69974810 (diff) |
require password
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | IPPay.pm | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -2,6 +2,7 @@ Revision history for Perl extension Business::OnlinePayment::IPPay. 0.09 unreleased - Set UDField3 per IPPay request + - Require password 0.08 Fri Dec 14 12:54:14 PST 2012 - Pass ACH account type @@ -11,7 +11,7 @@ use Business::OnlinePayment::HTTPS; use vars qw($VERSION $DEBUG @ISA $me); @ISA = qw(Business::OnlinePayment::HTTPS); -$VERSION = '0.09_01'; +$VERSION = '0.09_02'; $VERSION = eval $VERSION; # modperlstyle: convert the string into a number $DEBUG = 0; @@ -177,7 +177,7 @@ sub submit { $self->is_success(0); $self->map_fields(); - my @required_fields = qw(action login type); + my @required_fields = qw(action login password type); my $action = lc($self->{_content}->{action}); my $type = $self->transaction_type(); |