Skip to content
This repository has been archived by the owner on Feb 6, 2020. It is now read-only.

Commit

Permalink
No longer use camelCase for payment data.
Browse files Browse the repository at this point in the history
  • Loading branch information
rvdsteege committed Mar 31, 2016
1 parent 94617c4 commit 4004108
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Gateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public function start( Pronamic_Pay_PaymentDataInterface $data, Pronamic_Pay_Pay
$customer->locale = $data->get_language_and_country();
$customer->ip_address = Pronamic_WP_Pay_Server::get( 'REMOTE_ADDR', FILTER_VALIDATE_IP );
$customer->forwarded_ip = Pronamic_WP_Pay_Server::get( 'HTTP_X_FORWARDED_FOR', FILTER_VALIDATE_IP );
$customer->first_name = $data->getCustomerName();
$customer->first_name = $data->get_customer_name();
$customer->email = $data->get_email();

$transaction = new Pronamic_WP_Pay_Gateways_MultiSafepay_Connect_Transaction();
Expand Down

0 comments on commit 4004108

Please sign in to comment.