summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2015-06-06 15:07:30 -0700
committerIvan Kohler <ivan@freeside.biz>2015-06-06 15:07:30 -0700
commitc4c615332e053a8f5cffc3af2fc0f8cedaae0e54 (patch)
tree33e968b35a31a3c2c7fec398f6b7b42b35869d0b
parent78b10b1d7023ce09eee44ac346bfc2ae67b4e630 (diff)
UserIPAddr is now UserIPAddress
-rw-r--r--IPPay.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/IPPay.pm b/IPPay.pm
index 4b94983..8060892 100644
--- a/IPPay.pm
+++ b/IPPay.pm
@@ -11,7 +11,7 @@ use Business::OnlinePayment::HTTPS;
use vars qw($VERSION $DEBUG @ISA $me);
@ISA = qw(Business::OnlinePayment::HTTPS);
-$VERSION = '0.09';
+$VERSION = '0.10';
$VERSION = eval $VERSION; # modperlstyle: convert the string into a number
$DEBUG = 0;
@@ -359,7 +359,7 @@ sub submit {
BillingCountry => \$country,
BillingPhone => 'phone',
Email => 'email',
- UserIPAddr => 'customer_ip',
+ UserIPAddress => 'customer_ip',
UserHost => 'UserHost',
UDField1 => 'UDField1',
UDField2 => 'UDField2',
@@ -588,7 +588,7 @@ from content(%content):
BillingCountry => 'country', # forced to ISO-3166-alpha-3
BillingPhone => 'phone',
Email => 'email',
- UserIPAddr => 'customer_ip',
+ UserIPAddress => 'customer_ip',
UserHost => 'UserHost',
UDField1 => 'UDField1',
UDField2 => 'UDField2',