Skip to content

Commit

Permalink
Merge pull request #197 from hps/tsmedal-fix_auth-decline_bug
Browse files Browse the repository at this point in the history
Tsmedal fix auth decline bug
  • Loading branch information
securesubmit-buildmaster authored Feb 9, 2023
2 parents c453b3e + 8f044e9 commit de6df84
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ Download the contents and extract to your WordPress plugin folder. Activate.

## Changelog

#### 2.1.2

* Bugfix for some orders that include failed transaction attempts

#### 2.1.1

* Adds order notes for failed transaction attempts
Expand Down
2 changes: 1 addition & 1 deletion classes/class-wc-gateway-securesubmit.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class WC_Gateway_SecureSubmit extends WC_Payment_Gateway
public $payment = null;
public $refund = null;
public $reverse = null;
private $pluginVersion = '2.1.1';
private $pluginVersion = '2.1.2';

public function __construct()
{
Expand Down
2 changes: 1 addition & 1 deletion classes/wc-gateway-securesubmit/class-payment.php
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ public function call($orderId)
'SecureSubmit payment failed. Gateway response message: "' .
$e->getMessage() . '"',
'wc_securesubmit'
) . ' (Transaction ID: ' . $e->transactionId . ')');
));
} catch (Exception $f) {
// eat it
}
Expand Down
4 changes: 2 additions & 2 deletions gateway-securesubmit.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
Plugin Name: WooCommerce SecureSubmit Gateway
Plugin URI: https://developer.heartlandpaymentsystems.com/SecureSubmit/
Description: Heartland Payment Systems gateway for WooCommerce.
Version: 2.1.1
WC tested up to: 7.1.0
Version: 2.1.2
WC tested up to: 7.3.0
Author: SecureSubmit
Author URI: https://developer.heartlandpaymentsystems.com/SecureSubmit/
*/
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
=== WooCommerce SecureSubmit Gateway ===
Contributors: markhagan, marksmedal
Tags: woocommerce, woo, commerce, heartland, payment, systems, gateway, token, tokenize, save cards
Tested up to: 6.1
Tested up to: 6.1.1
Stable tag: trunk
License: GPLv2
License URI: https://github.com/hps/heartland-woocommerce-plugin/blob/master/LICENSE.md
Expand Down Expand Up @@ -35,6 +35,9 @@ Get your Certification (Dev/Sandbox) Api Keys by creating an account on https://
3. A view of the Manage Cards section

== Changelog ==
= 2.1.2 =
* Bugfix for some orders that include failed transaction attempts

= 2.1.1 =
* Adds order notes for failed transaction attempts

Expand Down

0 comments on commit de6df84

Please sign in to comment.