Changeset 2805886
- Timestamp:
- 10/27/2022 01:47:47 PM (3 years ago)
- Location:
- squad-payment-gateway/trunk
- Files:
-
- 3 edited
-
includes/class-wc-payment-gateway-squad.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
squad-payment-gateway.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
squad-payment-gateway/trunk/includes/class-wc-payment-gateway-squad.php
r2803417 r2805886 541 541 542 542 $transStatus = $squad_response->data->transaction_status; 543 $success = $transStatus == "Success" ? true : false;543 $success = strtolower($transStatus) == "success" ? true : false; 544 544 545 545 if ($success) { … … 881 881 882 882 883 $this->logToFile('dsdsdsd');884 883 if (!($this->public_key && $this->secret_key)) { 885 884 return false; -
squad-payment-gateway/trunk/readme.txt
r2803417 r2805886 8 8 Tags: squad, woocommerce, payment, payment gateway, bank account, credit card, debit card, nigeria, international, mastercard, visa 9 9 Tested up to: 6.0.2 10 Stable tag: 1.0. 710 Stable tag: 1.0.8 11 11 Requires PHP: 5.6 12 12 License: MIT - see below -
squad-payment-gateway/trunk/squad-payment-gateway.php
r2803417 r2805886 7 7 * Author URI: http://squadco.com/ 8 8 * Description: Provides Seamless Payments with Multiple payment options. 9 * Version: 1.0. 79 * Version: 1.0.8 10 10 * Tested up to: 6.0.2 11 11 * License: GPL2
Note: See TracChangeset
for help on using the changeset viewer.