Skip to content

Commit

Permalink
Merge pull request #10147 from KarinG/CRM-20393-dmaster
Browse files Browse the repository at this point in the history
CRM-20393 - fix for check if the user already submitted transaction
  • Loading branch information
eileenmcnaughton authored Apr 12, 2017
2 parents d0e1473 + 5bd23b4 commit eb3c005
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Core/Payment/AuthorizeNet.php
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ public function _getAuthorizeNetFields() {
$fields['x_country'] = $this->_getParam('country');
$fields['x_customer_ip'] = $this->_getParam('ip_address');
$fields['x_email'] = $this->_getParam('email');
$fields['x_invoice_num'] = substr($this->_getParam('invoiceID'), 0, 20);
$fields['x_invoice_num'] = $this->_getParam('invoiceID');
$fields['x_amount'] = $amount;
$fields['x_currency_code'] = $this->_getParam('currencyID');
$fields['x_description'] = $this->_getParam('description');
Expand Down

0 comments on commit eb3c005

Please sign in to comment.